diff client/src/App.vue @ 1251:d1903250390b

splitted mophtool into two components one shows the survey results and the other the info bar when a bottleneck is selected (and no profile is shown)
author Markus Kottlaender <markus@intevation.de>
date Wed, 21 Nov 2018 12:10:12 +0100
parents 104d41ea7c15
children 13abf612cd9d
line wrap: on
line diff
--- a/client/src/App.vue	Wed Nov 21 11:42:00 2018 +0100
+++ b/client/src/App.vue	Wed Nov 21 12:10:12 2018 +0100
@@ -19,6 +19,7 @@
             <div class="flex-fill"></div>
             <div class="d-flex flex-row align-items-end">
                 <Morphtool v-if="routeName == 'mainview'"></Morphtool>
+                <Infobar v-if="routeName == 'mainview'"></Infobar>
             </div>
             <Zoom v-if="routeName == 'mainview'"></Zoom>
         </div>
@@ -81,6 +82,7 @@
   },
   components: {
     Morphtool: () => import("./morphtool/Morphtool"),
+    Infobar: () => import("./morphtool/Infobar"),
     Pdftool: () => import("./pdftool/Pdftool"),
     Zoom: () => import("./zoom/zoom"),
     Identify: () => import("./identify/Identify"),