aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/networkMapApp/src/index.html
diff options
context:
space:
mode:
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>2020-09-03 18:16:13 +0200
committerAijana Schumann <aijana.schumann@highstreet-technologies.com>2020-09-03 18:16:13 +0200
commit65ffa99d96e7b443e3d74ec20bbd321fd66aa76d (patch)
tree1c60e54fec94f80c96fb8a30c3dfbaf47ebe7573 /sdnr/wt/odlux/apps/networkMapApp/src/index.html
parent6a81f77f1f13332dd1784aeae9a27c322c8e556b (diff)
Update NetworkMap
update networkmap Issue-ID: CCSDK-2713 Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com> Change-Id: I97b0950a4d7f98fdb9044c1e05dfa8dfca34efaf
Diffstat (limited to 'sdnr/wt/odlux/apps/networkMapApp/src/index.html')
-rw-r--r--sdnr/wt/odlux/apps/networkMapApp/src/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/apps/networkMapApp/src/index.html b/sdnr/wt/odlux/apps/networkMapApp/src/index.html
index f68e8c13b..9a7f77a29 100644
--- a/sdnr/wt/odlux/apps/networkMapApp/src/index.html
+++ b/sdnr/wt/odlux/apps/networkMapApp/src/index.html
@@ -17,10 +17,11 @@
<script>
// run the application
- require(["app","connectApp","faultApp", "networkMapApp", "configurationApp"], function (app, connectApp, faultApp, networkMapApp, configurationApp) {
+ require(["app","connectApp","faultApp", "networkMapApp", "configurationApp", "linkCalculationApp"], function (app, connectApp, faultApp, networkMapApp, configurationApp, linkCalculationApp) {
connectApp.register();
//faultApp.register();
configurationApp.register();
+ linkCalculationApp.register();
networkMapApp.register();
app("./app.tsx").runApplication();
});