summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/index.html
diff options
context:
space:
mode:
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>2021-07-30 09:03:14 +0200
committerAijana Schumann <aijana.schumann@highstreet-technologies.com>2021-07-30 09:03:14 +0200
commit948204ee82cd6c2c0cedf2820eec0610a9df7185 (patch)
tree88ddc92346e61721955ed354db9f49a1f288cdc6 /sdnr/wt/odlux/apps/inventoryApp/src/index.html
parente4f3ee3ce9264c6ca41928e49c3075d4ca99eb0f (diff)
Update InventoryApp
Fix several bugs and improve usability Issue-ID: CCSDK-3395 Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com> Change-Id: I25a3badc2d179ccc99ffd38e860046dbfd771df1
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/index.html')
-rw-r--r--sdnr/wt/odlux/apps/inventoryApp/src/index.html3
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>