diff client/src/components/importoverview/AdditionalDetail.vue @ 2608:13377f2a5c42

overview2: agm details prototype implemented
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 13 Mar 2019 09:45:29 +0100
parents 11fd7ee37f10
children c52bf6f994c0
line wrap: on
line diff
--- a/client/src/components/importoverview/AdditionalDetail.vue	Tue Mar 12 17:13:04 2019 +0100
+++ b/client/src/components/importoverview/AdditionalDetail.vue	Wed Mar 13 09:45:29 2019 +0100
@@ -9,10 +9,6 @@
       v-if="isApprovedGaugeMeasurement"
     ></ApprovedGaugeMeasurementDetail>
     <BottleneckDetail :entry="entry" v-if="isBottleneck"></BottleneckDetail>
-    <SoundingResultDetail
-      :entry="entry"
-      v-if="isSoundingResult"
-    ></SoundingResultDetail>
   </div>
 </template>
 
@@ -35,7 +31,6 @@
   name: "additionaldetail",
   props: ["entry"],
   components: {
-    SoundingResultDetail: () => import("./SoundingResultDetail.vue"),
     BottleneckDetail: () => import("./BottleneckDetail.vue"),
     ApprovedGaugeMeasurementDetail: () =>
       import("./ApprovedGaugeMeasurementDetail.vue"),
@@ -53,12 +48,6 @@
     },
     isBottleneck() {
       return this.kind === "BN" || this.kind === "UBN";
-    },
-    isStretch() {
-      return this.kind === "ST";
-    },
-    isSoundingResult() {
-      return this.kind === "SR";
     }
   }
 };