aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx')
-rw-r--r--sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx2
1 files changed, 2 insertions, 0 deletions
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"
});