From 77a101dfcbad1e6a6a91d8bea9b0df8b7d8e76ff Mon Sep 17 00:00:00 2001 From: Aijana Schumann Date: Mon, 31 Aug 2020 15:23:24 +0200 Subject: Add searchbar to NetworkMap Add a searchbar to the networkmap Issue-ID: CCSDK-2563 Signed-off-by: Aijana Schumann Change-Id: Ia607f9c517d3ec7ca7681243ad13c7dc5864c5ae --- sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts') diff --git a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts index 4069ed24d..c9c475411 100644 --- a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts +++ b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts @@ -21,12 +21,14 @@ import { combineActionHandler } from '../../../../framework/src/flux/middleware' import { DetailsReducer, DetailsStoreState } from "./detailsReducer"; import { PopupsReducer, popupStoreState } from "./popupReducer"; import { MapReducer, mapState } from "./mapReducer"; +import { SearchReducer, searchState } from "./searchReducer"; import { connectivityState, ConnectivityReducer } from './connectivityReducer'; export interface INetworkAppStoreState{ details: DetailsStoreState, popup: popupStoreState, map: mapState, + search: searchState, connectivity: connectivityState } @@ -40,6 +42,7 @@ const appHandler = { details: DetailsReducer, popup: PopupsReducer, map: MapReducer, + search: SearchReducer, connectivity: ConnectivityReducer}; export const networkmapRootHandler = combineActionHandler(appHandler) -- cgit 1.2.3-korg