From: Lucas Di Pentima Date: Wed, 14 Jul 2021 20:52:54 +0000 (-0300) Subject: 17573: Adds storage classes information to the collection panel. X-Git-Tag: 2.3.0~15^2~4 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/40f03448780c8b22cba93d4eff9ca976cea45abf 17573: Adds storage classes information to the collection panel. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- diff --git a/src/views/collection-panel/collection-panel.tsx b/src/views/collection-panel/collection-panel.tsx index 94a5af33..4270cbbd 100644 --- a/src/views/collection-panel/collection-panel.tsx +++ b/src/views/collection-panel/collection-panel.tsx @@ -237,13 +237,14 @@ export const CollectionPanel = withStyles(styles)( } handleContextMenu = (event: React.MouseEvent) => { - const { uuid, ownerUuid, name, description, kind } = this.props.item; + const { uuid, ownerUuid, name, description, kind, storageClassesDesired } = this.props.item; const menuKind = this.props.dispatch(resourceUuidToContextMenuKind(uuid)); const resource = { uuid, ownerUuid, name, description, + storageClassesDesired, kind, menuKind, }; @@ -341,5 +342,9 @@ export const CollectionDetailsAttributes = (props: { item: CollectionResource, t + + + ; };