[arvados] updated: 2.7.0-5609-gf650ebb8d9

git repository hosting git at public.arvados.org
Wed Dec 20 20:06:34 UTC 2023


Summary of changes:
 .../src/views-components/side-panel/side-panel-collapsed.tsx   | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

       via  f650ebb8d9f7c55efc147b6c23143e9f6a30fee5 (commit)
      from  14a2e78ff5cd055216a9f6edc40dfb3f79122fa8 (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 f650ebb8d9f7c55efc147b6c23143e9f6a30fee5
Author: Stephen Smith <stephen at curii.com>
Date:   Wed Dec 20 15:06:02 2023 -0500

    19675: Add instance types panel to collapsed side panel
    
    Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>

diff --git a/services/workbench2/src/views-components/side-panel/side-panel-collapsed.tsx b/services/workbench2/src/views-components/side-panel/side-panel-collapsed.tsx
index d2f5cfec3b..9948ace35d 100644
--- a/services/workbench2/src/views-components/side-panel/side-panel-collapsed.tsx
+++ b/services/workbench2/src/views-components/side-panel/side-panel-collapsed.tsx
@@ -4,12 +4,12 @@
 
 import React, { ReactElement } from 'react'
 import { connect } from 'react-redux'
-import { ProjectsIcon, ProcessIcon, FavoriteIcon, ShareMeIcon, TrashIcon, PublicFavoriteIcon, GroupsIcon } from 'components/icon/icon'
+import { ProjectsIcon, ProcessIcon, FavoriteIcon, ShareMeIcon, TrashIcon, PublicFavoriteIcon, GroupsIcon, ResourceIcon } from 'components/icon/icon'
 import { TerminalIcon } from 'components/icon/icon'
 import { IconButton, List, ListItem, Tooltip } from '@material-ui/core'
 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'
 import { ArvadosTheme } from 'common/custom-theme'
-import { navigateTo } from 'store/navigation/navigation-action'
+import { navigateTo, navigateToInstanceTypes } from 'store/navigation/navigation-action'
 import { RootState } from 'store/store'
 import { Dispatch } from 'redux'
 import {
@@ -48,6 +48,7 @@ enum SidePanelCollapsedCategory {
     PUBLIC_FAVORITES = 'Public Favorites',
     SHARED_WITH_ME = 'Shared with me',
     ALL_PROCESSES = 'All Processes',
+    INSTANCE_TYPES = 'Instance Types',
     SHELL_ACCESS = 'Shell Access',
     GROUPS = 'Groups',
     TRASH = 'Trash',
@@ -85,6 +86,11 @@ const sidePanelCollapsedCategories: TCollapsedCategory[] = [
         icon: <ProcessIcon />,
         navTarget: navigateToAllProcesses,
     },
+    {
+        name: SidePanelCollapsedCategory.INSTANCE_TYPES,
+        icon: <ResourceIcon />,
+        navTarget: navigateToInstanceTypes,
+    },
     {
         name: SidePanelCollapsedCategory.SHELL_ACCESS,
         icon: <TerminalIcon />,

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list