X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/217ceda3a0eb62a1ef1a58e0a1fdba89862920f8..7f0f12c40238f3eb12a51877a755cf22357e0767:/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 907189d1fa..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,8 +21,6 @@ export interface SearchResultsPanelDataProps { sessions: Session[]; remoteHostsConfig: { [key: string]: Config }; localCluster: string; - numberOfItems: number; - isNotFound: boolean; } export interface SearchResultsPanelActionProps { @@ -36,16 +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; - const isNotFound = dataExplorer[SEARCH_RESULTS_PANEL_ID].isNotFound; return { user: rootState.auth.user, sessions: rootState.auth.sessions, remoteHostsConfig: rootState.auth.remoteHostsConfig, localCluster: rootState.auth.localCluster, - numberOfItems, - isNotFound, }; };