From 6d34334ffc69a75ffa638d1799ec942c588bc4d4 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Wed, 20 Oct 2021 17:12:38 -0300 Subject: [PATCH] 18128: Make the properties panel of hidden by default. This is to make cypress tests pass, while maintaining previous behavior. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/views/collection-panel/collection-panel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/collection-panel/collection-panel.tsx b/src/views/collection-panel/collection-panel.tsx index 17fe0992..794e093f 100644 --- a/src/views/collection-panel/collection-panel.tsx +++ b/src/views/collection-panel/collection-panel.tsx @@ -148,7 +148,7 @@ export const CollectionPanel = withStyles(styles)( const { classes, item, dispatch, isWritable, isOldVersion, isLoadingFiles, tooManyFiles } = this.props; const panelsData: MPVPanelState[] = [ {name: "Details"}, - {name: "Properties", visible: false}, + {name: "Properties"}, {name: "Files"}, ]; return item -- 2.30.2