# HG changeset patch # User Thomas Junk # Date 1568708976 -7200 # Node ID 8c0f2377ff47dcd5a79eacf1cdd2a15323c5b344 # Parent d336a78985adb7f3f4ef097204ce5af2868881fa import_overview: DSR review details added diff -r d336a78985ad -r 8c0f2377ff47 client/src/components/importoverview/LogDetail.vue --- a/client/src/components/importoverview/LogDetail.vue Tue Sep 17 09:18:46 2019 +0200 +++ b/client/src/components/importoverview/LogDetail.vue Tue Sep 17 10:29:36 2019 +0200 @@ -108,7 +108,7 @@ return this.kind === "SEC"; }, isSR() { - return this.kind === "SR"; + return this.kind === "SR" || this.kind === "DSR"; } }, methods: { diff -r d336a78985ad -r 8c0f2377ff47 client/src/components/importoverview/SoundingResultDetail.vue --- a/client/src/components/importoverview/SoundingResultDetail.vue Tue Sep 17 09:18:46 2019 +0200 +++ b/client/src/components/importoverview/SoundingResultDetail.vue Tue Sep 17 10:29:36 2019 +0200 @@ -1,8 +1,18 @@ @@ -29,7 +39,13 @@ this.$store.commit("imports/hideAdditionalInfo"); }, computed: { - ...mapState("imports", ["showAdditional", "details"]) + ...mapState("imports", ["showAdditional", "details"]), + isSR() { + return this.entry.kind.toUpperCase() === "SR"; + }, + isDSR() { + return this.entry.kind.toUpperCase() === "DSR"; + } }, methods: { zoomTo() {