From 3d6dd098db8ec243ca716a09fc55decbdd23b726 Mon Sep 17 00:00:00 2001 From: Herbert Eiselt Date: Wed, 3 Apr 2019 17:03:52 +0200 Subject: SDN-R Inventory export Add inventory export and search Change-Id: Ib9541cea9be1bd7628f5e89ba17a65439f98a5bf Issue-ID: SDNC-494 Signed-off-by: Herbert Eiselt --- sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx') diff --git a/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx b/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx index 6022d9569..e5e7cc8c7 100644 --- a/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx +++ b/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx @@ -6,11 +6,13 @@ import { faShoppingBag } from '@fortawesome/free-solid-svg-icons'; // select ap import applicationManager from '../../../framework/src/services/applicationManager'; import { Dashboard } from './views/dashboard'; +import faultAppRootHandler from './handlers/inventoryAppRootHandler'; export function register() { applicationManager.registerApplication({ name: "inventory", icon: faShoppingBag, + rootActionHandler: faultAppRootHandler, rootComponent: Dashboard, menuEntry: "Inventory" }); -- cgit 1.2.3-korg