X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a8915904f23325c5c6e465164bc032e0dabc4229..9c5068adca5044058518667e981000c3913673b8:/services/workbench2/src/views/search-results-panel/search-results-panel.tsx diff --git a/services/workbench2/src/views/search-results-panel/search-results-panel.tsx b/services/workbench2/src/views/search-results-panel/search-results-panel.tsx index 87e26d50a2..0b69ff246a 100644 --- a/services/workbench2/src/views/search-results-panel/search-results-panel.tsx +++ b/services/workbench2/src/views/search-results-panel/search-results-panel.tsx @@ -14,7 +14,6 @@ import { User } from "models/user"; import { Config } from 'common/config'; import { Session } from "models/session"; import { toggleOne, deselectAllOthers } from "store/multiselect/multiselect-actions"; -import { SEARCH_RESULTS_PANEL_ID } from 'store/search-results-panel/search-results-panel-actions'; export interface SearchResultsPanelDataProps { data: SearchBarAdvancedFormData; @@ -22,7 +21,6 @@ export interface SearchResultsPanelDataProps { sessions: Session[]; remoteHostsConfig: { [key: string]: Config }; localCluster: string; - numberOfItems: number; } export interface SearchResultsPanelActionProps { @@ -35,14 +33,11 @@ export interface SearchResultsPanelActionProps { export type SearchResultsPanelProps = SearchResultsPanelDataProps & SearchResultsPanelActionProps; const mapStateToProps = (rootState: RootState) => { - 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, }; };