changeset 3262:a2e9671f4ad6

client: removed closing html tags
author Markus Kottlaender <markus@intevation.de>
date Wed, 15 May 2019 11:47:56 +0200
parents 916d4c898f08
children d23532a4d0c3
files client/src/components/Contextbox.vue
diffstat 1 files changed, 5 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/Contextbox.vue	Tue May 14 20:08:10 2019 +0200
+++ b/client/src/components/Contextbox.vue	Wed May 15 11:47:56 2019 +0200
@@ -1,14 +1,10 @@
 <template>
   <div :class="style">
-    <Bottlenecks v-if="contextBoxContent === 'bottlenecks'"></Bottlenecks>
-    <Staging v-if="contextBoxContent === 'staging'"></Staging>
-    <Stretches v-if="contextBoxContent === 'stretches'"></Stretches>
-    <ImportOverview
-      v-if="contextBoxContent === 'importoverview'"
-    ></ImportOverview>
-    <ImportConfiguration
-      v-if="contextBoxContent === 'importconfiguration'"
-    ></ImportConfiguration>
+    <Bottlenecks v-if="contextBoxContent === 'bottlenecks'" />
+    <Staging v-if="contextBoxContent === 'staging'" />
+    <Stretches v-if="contextBoxContent === 'stretches'" />
+    <ImportOverview v-if="contextBoxContent === 'importoverview'" />
+    <ImportConfiguration v-if="contextBoxContent === 'importconfiguration'" />
   </div>
 </template>