mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Bring back select all/none to scene list (#5993)
This commit is contained in:
@@ -669,6 +669,16 @@ export const FilteredSceneList = (props: IFilteredScenes) => {
|
|||||||
isDisplayed: () => !hasSelection,
|
isDisplayed: () => !hasSelection,
|
||||||
className: "create-new-item",
|
className: "create-new-item",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: intl.formatMessage({ id: "actions.select_all" }),
|
||||||
|
onClick: () => onSelectAll(),
|
||||||
|
isDisplayed: () => totalCount > 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: intl.formatMessage({ id: "actions.select_none" }),
|
||||||
|
onClick: () => onSelectNone(),
|
||||||
|
isDisplayed: () => hasSelection,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: intl.formatMessage({ id: "actions.play_random" }),
|
text: intl.formatMessage({ id: "actions.play_random" }),
|
||||||
onClick: playRandom,
|
onClick: playRandom,
|
||||||
|
|||||||
Reference in New Issue
Block a user