From 499c2c0ca2c1a7a88aeb9ec9a622f9c7f5399343 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Thu, 30 Mar 2023 14:58:39 -0400 Subject: [PATCH] 20252: Clean up imports Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- src/store/advanced-tab/advanced-tab.tsx | 2 +- src/store/navigation/navigation-action.ts | 1 - .../context-menu/action-sets/workflow-action-set.ts | 6 ------ src/views/workflow-panel/registered-workflow-panel.tsx | 1 - 4 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/store/advanced-tab/advanced-tab.tsx b/src/store/advanced-tab/advanced-tab.tsx index 82b4dfb0..a495e89c 100644 --- a/src/store/advanced-tab/advanced-tab.tsx +++ b/src/store/advanced-tab/advanced-tab.tsx @@ -628,7 +628,7 @@ const linkApiResponse = (apiResponse: LinkResource): JSX.Element => { const wfApiResponse = (apiResponse: WorkflowResource): JSX.Element => { const { uuid, name, - ownerUuid, createdAt, modifiedAt, modifiedByClientUuid, modifiedByUserUuid, description, definition + ownerUuid, createdAt, modifiedAt, modifiedByClientUuid, modifiedByUserUuid, description } = apiResponse; const response = ` "uuid": "${uuid}", diff --git a/src/store/navigation/navigation-action.ts b/src/store/navigation/navigation-action.ts index edda2c61..55479188 100644 --- a/src/store/navigation/navigation-action.ts +++ b/src/store/navigation/navigation-action.ts @@ -8,7 +8,6 @@ import { ResourceKind, extractUuidKind } from 'models/resource'; import { SidePanelTreeCategory } from '../side-panel-tree/side-panel-tree-actions'; import { Routes, getGroupUrl, getNavUrl, getUserProfileUrl } from 'routes/routes'; import { RootState } from 'store/store'; -import { openDetailsPanel } from 'store/details-panel/details-panel-action'; import { ServiceRepository } from 'services/services'; import { pluginConfig } from 'plugins'; import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; diff --git a/src/views-components/context-menu/action-sets/workflow-action-set.ts b/src/views-components/context-menu/action-sets/workflow-action-set.ts index cf28bcd3..a5223d1d 100644 --- a/src/views-components/context-menu/action-sets/workflow-action-set.ts +++ b/src/views-components/context-menu/action-sets/workflow-action-set.ts @@ -5,16 +5,10 @@ import { ContextMenuActionSet } from "views-components/context-menu/context-menu-action-set"; import { openRunProcess } from "store/workflow-panel/workflow-panel-actions"; import { - RenameIcon, - ShareIcon, - MoveToIcon, - CopyIcon, DetailsIcon, AdvancedIcon, OpenIcon, Link, - RestoreVersionIcon, - FolderSharedIcon, StartIcon } from "components/icon/icon"; import { copyToClipboardAction, openInNewTabAction } from "store/open-in-new-tab/open-in-new-tab.actions"; diff --git a/src/views/workflow-panel/registered-workflow-panel.tsx b/src/views/workflow-panel/registered-workflow-panel.tsx index 7b0f2a4c..0963de35 100644 --- a/src/views/workflow-panel/registered-workflow-panel.tsx +++ b/src/views/workflow-panel/registered-workflow-panel.tsx @@ -14,7 +14,6 @@ import { CardContent, IconButton, } from '@material-ui/core'; -import { Dispatch } from "redux"; import { connect, DispatchProp } from "react-redux"; import { RouteComponentProps } from 'react-router'; import { ArvadosTheme } from 'common/custom-theme'; -- 2.30.2