20031: Add icons to collection files action set
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / collection-files-not-selected-action-set.ts
index 1ad13e74188cdfe249d28a14479e16821606c996..1e31d11c800742eac41659e502513aeb39d4d86f 100644 (file)
@@ -4,10 +4,12 @@
 
 import { ContextMenuActionSet } from "views-components/context-menu/context-menu-action-set";
 import { collectionPanelFilesAction } from "store/collection-panel/collection-panel-files/collection-panel-files-actions";
+import { SelectAllIcon } from "components/icon/icon";
 
 export const collectionFilesNotSelectedActionSet: ContextMenuActionSet = [[{
     name: "Select all",
+    icon: SelectAllIcon,
     execute: dispatch => {
         dispatch(collectionPanelFilesAction.SELECT_ALL_COLLECTION_FILES());
     }
-}]];
\ No newline at end of file
+}]];