diff client/src/store/index.js @ 3184:1ba2a7d22fbb

available_fairway_depth: display selected feature
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 07 May 2019 16:59:11 +0200
parents 1686ec185155
children ba7bc3740fb3
line wrap: on
line diff
--- a/client/src/store/index.js	Tue May 07 16:30:20 2019 +0200
+++ b/client/src/store/index.js	Tue May 07 16:59:11 2019 +0200
@@ -23,6 +23,7 @@
 import bottlenecks from "./bottlenecks";
 import { imports } from "./imports";
 import { importschedule } from "./importschedule";
+import { diagram } from "./diagram";
 import gauges from "./gauges";
 
 Vue.use(Vuex);
@@ -32,6 +33,7 @@
     reset() {
       this.replaceState({
         application: application.init(),
+        diagram: diagram.init(),
         fairwayprofile: fairwayprofile.init(),
         imports: imports.init(),
         importschedule: importschedule.init(),
@@ -45,6 +47,7 @@
   },
   modules: {
     application,
+    diagram,
     fairwayprofile,
     imports,
     importschedule,