diff --git a/ui/v2.5/src/components/Scenes/SceneList.tsx b/ui/v2.5/src/components/Scenes/SceneList.tsx index 51795fe61..ebe5be7e3 100644 --- a/ui/v2.5/src/components/Scenes/SceneList.tsx +++ b/ui/v2.5/src/components/Scenes/SceneList.tsx @@ -669,6 +669,16 @@ export const FilteredSceneList = (props: IFilteredScenes) => { isDisplayed: () => !hasSelection, 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" }), onClick: playRandom,