diff client/src/components/importoverview/LogDetail.vue @ 2919:6c5364ff0abb

client: removed a lot of unnecessary closing tags
author Markus Kottlaender <markus@intevation.de>
date Wed, 03 Apr 2019 16:10:11 +0200
parents edc2633c3cc6
children ce148a7fb896
line wrap: on
line diff
--- a/client/src/components/importoverview/LogDetail.vue	Wed Apr 03 15:49:44 2019 +0200
+++ b/client/src/components/importoverview/LogDetail.vue	Wed Apr 03 16:10:11 2019 +0200
@@ -27,14 +27,11 @@
           (LOS: {{ details.summary.los }})
         </span>
       </div>
-      <StretchDetail
-        v-if="isStretch && isPending"
-        :entry="entry"
-      ></StretchDetail>
+      <StretchDetail v-if="isStretch && isPending" :entry="entry" />
       <SoundingResultDetail
         :entry="entry"
         v-if="isSoundingResult && isPending"
-      ></SoundingResultDetail>
+      />
     </div>
     <div
       v-if="entry.id === showAdditional && isPending"
@@ -53,10 +50,7 @@
       />
       <span class="text-info"><translate>Logs</translate></span>
     </div>
-    <AdditionalLog
-      v-if="entry.id === showLogs"
-      class="d-flex flex-row"
-    ></AdditionalLog>
+    <AdditionalLog v-if="entry.id === showLogs" class="d-flex flex-row" />
   </div>
 </template>