[arvados] updated: 2.7.0-6292-g7d618263d8

git repository hosting git at public.arvados.org
Mon May 13 17:56:55 UTC 2024


Summary of changes:
 services/workbench2/src/components/icon/icon.tsx                   | 7 +++++++
 .../context-menu/action-sets/workflow-action-set.ts                | 4 ++--
 .../views-components/multiselect-toolbar/ms-process-action-set.ts  | 4 ++--
 .../views-components/multiselect-toolbar/ms-workflow-action-set.ts | 4 ++--
 4 files changed, 13 insertions(+), 6 deletions(-)

       via  7d618263d8e5a9d3649bed78fdf63682eea1ea90 (commit)
      from  0dcb35b0e9fbfc1cb2dc3fb2ca352cff2b3c98d0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 7d618263d8e5a9d3649bed78fdf63682eea1ea90
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Mon May 13 13:56:49 2024 -0400

    21535: changed wf and process to use new delete icon Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/components/icon/icon.tsx b/services/workbench2/src/components/icon/icon.tsx
index 1ba88d25b2..bb7f6c2bf9 100644
--- a/services/workbench2/src/components/icon/icon.tsx
+++ b/services/workbench2/src/components/icon/icon.tsx
@@ -179,6 +179,13 @@ export const DoubleRightArrows: IconType = (props: any) => (
     </SvgIcon>
 )
 
+//https://pictogrammers.com/library/mdi/icon/delete-forever/
+export const DeleteForever: IconType = (props: any) => (
+    <SvgIcon {...props}>
+        <path d="M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19M8.46,11.88L9.87,10.47L12,12.59L14.12,10.47L15.53,11.88L13.41,14L15.53,16.12L14.12,17.53L12,15.41L9.88,17.53L8.47,16.12L10.59,14L8.46,11.88M15.5,4L14.5,3H9.5L8.5,4H5V6H19V4H15.5Z" />
+    </SvgIcon>
+)
+
 export type IconType = React.SFC<{ className?: string; style?: object }>;
 
 export const AddIcon: IconType = props => <Add {...props} />;
diff --git a/services/workbench2/src/views-components/context-menu/action-sets/workflow-action-set.ts b/services/workbench2/src/views-components/context-menu/action-sets/workflow-action-set.ts
index 4a1460bfc9..b71ed93d15 100644
--- a/services/workbench2/src/views-components/context-menu/action-sets/workflow-action-set.ts
+++ b/services/workbench2/src/views-components/context-menu/action-sets/workflow-action-set.ts
@@ -4,7 +4,7 @@
 
 import { ContextMenuActionSet } from "views-components/context-menu/context-menu-action-set";
 import { openRunProcess, deleteWorkflow } from "store/workflow-panel/workflow-panel-actions";
-import { DetailsIcon, AdvancedIcon, OpenIcon, Link, StartIcon, TrashIcon } from "components/icon/icon";
+import { DetailsIcon, AdvancedIcon, OpenIcon, Link, StartIcon, DeleteForever } from "components/icon/icon";
 import { copyToClipboardAction, openInNewTabAction } from "store/open-in-new-tab/open-in-new-tab.actions";
 import { toggleDetailsPanel } from "store/details-panel/details-panel-action";
 import { openAdvancedTabDialog } from "store/advanced-tab/advanced-tab";
@@ -53,7 +53,7 @@ export const workflowActionSet: ContextMenuActionSet = [
     [
         ...readOnlyWorkflowActionSet[0],
         {
-            icon: TrashIcon,
+            icon: DeleteForever,
             name: "Delete Workflow",
             execute: (dispatch, resources) => {
                 dispatch<any>(deleteWorkflow(resources[0].uuid, resources[0].ownerUuid));
diff --git a/services/workbench2/src/views-components/multiselect-toolbar/ms-process-action-set.ts b/services/workbench2/src/views-components/multiselect-toolbar/ms-process-action-set.ts
index 7802ad81f1..f628ac1bdc 100644
--- a/services/workbench2/src/views-components/multiselect-toolbar/ms-process-action-set.ts
+++ b/services/workbench2/src/views-components/multiselect-toolbar/ms-process-action-set.ts
@@ -2,7 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { MoveToIcon, RemoveIcon, ReRunProcessIcon, OutputIcon, RenameIcon, StopIcon } from "components/icon/icon";
+import { MoveToIcon, DeleteForever, ReRunProcessIcon, OutputIcon, RenameIcon, StopIcon } from "components/icon/icon";
 import { openMoveProcessDialog } from "store/processes/process-move-actions";
 import { openCopyProcessDialog } from "store/processes/process-copy-actions";
 import { openRemoveProcessDialog } from "store/processes/processes-actions";
@@ -26,7 +26,7 @@ const msCopyAndRerunProcess: MultiSelectMenuAction = {
 
 const msRemoveProcess: MultiSelectMenuAction = {
     name: MultiSelectMenuActionNames.REMOVE,
-    icon: RemoveIcon,
+    icon: DeleteForever,
     hasAlts: false,
     isForMulti: true,
     execute: (dispatch, resources) => {
diff --git a/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts b/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
index e7c2592b1e..e0f46bf6ee 100644
--- a/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
+++ b/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
@@ -3,7 +3,7 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { openRunProcess, deleteWorkflow } from 'store/workflow-panel/workflow-panel-actions';
-import { StartIcon, TrashIcon, Link } from 'components/icon/icon';
+import { StartIcon, DeleteForever, Link } from 'components/icon/icon';
 import { MultiSelectMenuAction, MultiSelectMenuActionSet, msCommonActionSet } from './ms-menu-actions';
 import { MultiSelectMenuActionNames } from "views-components/multiselect-toolbar/ms-menu-actions";
 import { copyToClipboardAction } from 'store/open-in-new-tab/open-in-new-tab.actions';
@@ -22,7 +22,7 @@ const msRunWorkflow: MultiSelectMenuAction = {
 
 const msDeleteWorkflow: MultiSelectMenuAction = {
     name: DELETE_WORKFLOW,
-    icon: TrashIcon,
+    icon: DeleteForever,
     hasAlts: false,
     isForMulti: true,
     execute: (dispatch, resources) => {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list