# HG changeset patch # User Markus Kottlaender # Date 1554298674 -7200 # Node ID edc2633c3cc6911001407ec9bdbf3936fe382f42 # Parent ea54e63deb40481e54d7a5db9cbe0538536a5def client: importsoverview: cleaned up html, removed unnecessary component diff -r ea54e63deb40 -r edc2633c3cc6 client/src/components/importoverview/AdditionalDetail.vue --- a/client/src/components/importoverview/AdditionalDetail.vue Wed Apr 03 15:32:59 2019 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,61 +0,0 @@ - - - diff -r ea54e63deb40 -r edc2633c3cc6 client/src/components/importoverview/FairwayDimension.vue --- a/client/src/components/importoverview/FairwayDimension.vue Wed Apr 03 15:32:59 2019 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ - - - - - diff -r ea54e63deb40 -r edc2633c3cc6 client/src/components/importoverview/FairwayDimensionDetail.vue --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/components/importoverview/FairwayDimensionDetail.vue Wed Apr 03 15:37:54 2019 +0200 @@ -0,0 +1,20 @@ + + + diff -r ea54e63deb40 -r edc2633c3cc6 client/src/components/importoverview/LogDetail.vue --- a/client/src/components/importoverview/LogDetail.vue Wed Apr 03 15:32:59 2019 +0200 +++ b/client/src/components/importoverview/LogDetail.vue Wed Apr 03 15:37:54 2019 +0200 @@ -13,22 +13,19 @@ class="text-info d-inline-block" /> Additional Info - - ({{ details.summary.length }}) + + ({{ details.summary.length }}) + - ({{ details.summary.bottlenecks.length }}) - {{ details.summary["source-organization"] }} (LOS: - {{ details.summary.los }}) + ({{ details.summary.bottlenecks.length }}) + + + {{ details.summary["source-organization"] }} + (LOS: {{ details.summary.los }}) + - + > + + + +
import("./SoundingResultDetail.vue"), StretchDetail: () => import("./StretchDetails.vue"), - AdditionalDetail: () => import("./AdditionalDetail.vue"), + FairwayDimensionDetail: () => import("./FairwayDimensionDetail.vue"), + ApprovedGaugeMeasurementDetail: () => + import("./ApprovedGaugeMeasurementDetail.vue"), + BottleneckDetail: () => import("./BottleneckDetail.vue"), AdditionalLog: () => import("./AdditionalLog.vue") }, props: ["entry"], @@ -94,14 +97,12 @@ return this.entry.state == "pending"; }, hasAdditionalInfo() { - return ( - this.isPending && (this.isApprovedGaugeMeasurement || this.isBottleneck) - ); + return this.isPending && (this.isAGM || this.isBottleneck); }, isFairwayDimension() { return this.kind === "FD"; }, - isApprovedGaugeMeasurement() { + isAGM() { return this.kind === "AGM"; }, isBottleneck() {