From bba514524b48490a8aeeb01376a10c853a90a2f2 Mon Sep 17 00:00:00 2001 From: Lisa Knox Date: Tue, 27 Feb 2024 13:53:07 -0500 Subject: [PATCH] 21386: feedback cleanup Arvados-DCO-1.1-Signed-off-by: Lisa Knox --- .../src/components/data-explorer/data-explorer.tsx | 4 ++-- .../src/views-components/data-explorer/data-explorer.tsx | 1 - .../src/views/search-results-panel/search-results-panel.tsx | 5 ----- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/services/workbench2/src/components/data-explorer/data-explorer.tsx b/services/workbench2/src/components/data-explorer/data-explorer.tsx index 36ae5fd6ed..ba710bc783 100644 --- a/services/workbench2/src/components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx @@ -96,7 +96,7 @@ interface DataExplorerDataProps { elementPath?: string; isMSToolbarVisible: boolean; checkedList: TCheckedList; - isNotFound?: boolean; + isNotFound: boolean; } interface DataExplorerActionProps { @@ -284,7 +284,7 @@ export const DataExplorer = withStyles(styles)( setCheckedListOnStore={setCheckedListOnStore} checkedList={checkedList} working={working} - isNotFound={this.props.isNotFound || false} + isNotFound={this.props.isNotFound} /> { - const { dataExplorer } = rootState; - const numberOfItems = dataExplorer[SEARCH_RESULTS_PANEL_ID].items.length; return { user: rootState.auth.user, sessions: rootState.auth.sessions, remoteHostsConfig: rootState.auth.remoteHostsConfig, localCluster: rootState.auth.localCluster, - numberOfItems, }; }; -- 2.30.2