diff options
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/index.html')
-rw-r--r-- | sdnr/wt/odlux/apps/inventoryApp/src/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/apps/inventoryApp/src/index.html b/sdnr/wt/odlux/apps/inventoryApp/src/index.html index 21f31300f..2c44424dd 100644 --- a/sdnr/wt/odlux/apps/inventoryApp/src/index.html +++ b/sdnr/wt/odlux/apps/inventoryApp/src/index.html @@ -15,10 +15,11 @@ <script type="text/javascript" src="./config.js"></script> <script> // run the application - require(["app", "inventoryApp", "connectApp", "configurationApp"], function (app, inventoryApp, connectApp, configurationApp) { + require(["app", "inventoryApp", "connectApp", "configurationApp", "faultApp"], function (app, inventoryApp, connectApp, configurationApp, faultApp) { inventoryApp.register(); connectApp.register(); configurationApp.register(); + faultApp.register(); app("./app.tsx").runApplication(); }); </script> |