changeset 3555:76eafbf0a98d

client: fairway profiles: re-added stroke to fairway box
author Markus Kottlaender <markus@intevation.de>
date Fri, 31 May 2019 15:22:30 +0200
parents efa468653d48
children bf8f21ef40b8
files client/src/components/fairway/Fairwayprofile.vue
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/fairway/Fairwayprofile.vue	Fri May 31 14:48:47 2019 +0200
+++ b/client/src/components/fairway/Fairwayprofile.vue	Fri May 31 15:22:30 2019 +0200
@@ -494,7 +494,8 @@
           .datum([{ x: startPoint, y: depth }, { x: endPoint, y: depth }])
           .attr("fill", "#002AFF")
           .attr("fill-opacity", 0.65)
-          .attr("stroke", "transparent")
+          .attr("stroke", "#002AFF")
+          .attr("stroke-width", 2)
           .attr("d", fairwayArea);
       }
     },