changeset 5582:923ef002a4fa surveysperbottleneckid

Add comments for places where name is okay.
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 14 Feb 2022 11:40:58 +0100
parents 2cadfdc9960c
children c1bd5f8eaf9a
files client/src/components/map/MapPopup.vue
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/map/MapPopup.vue	Mon Feb 14 11:37:29 2022 +0100
+++ b/client/src/components/map/MapPopup.vue	Mon Feb 14 11:40:58 2022 +0100
@@ -193,7 +193,7 @@
       const bn = this.bottlenecks.find(
         b => b.get("bottleneck_id") == this.selectedBottleneck
       );
-      this.$store.commit("bottlenecks/setBottleneckForPrint", bn.name);
+      this.$store.commit("bottlenecks/setBottleneckForPrint", bn.name); //name is okay.
       this.close();
     },
     openGauges(gauge) {
@@ -222,7 +222,7 @@
       const bn = this.bottlenecks.find(
         b => b.bottleneck_id == this.selectedBottleneck
       );
-      this.$store.commit("bottlenecks/setBottleneckForPrint", bn.name);
+      this.$store.commit("bottlenecks/setBottleneckForPrint", bn.name); //name is okay.
       this.openFairwayAvailability();
     },
     openFairwayAvailabilityForStretch(stretch) {