changeset 3060:cebbc1a8987b

client: linting
author Fadi Abbud <fadi.abbud@intevation.de>
date Tue, 16 Apr 2019 11:22:32 +0200
parents 6f5693bf7804
children 563176194d74
files client/src/components/gauge/HydrologicalConditions.vue
diffstat 1 files changed, 4 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/gauge/HydrologicalConditions.vue	Tue Apr 16 10:38:42 2019 +0200
+++ b/client/src/components/gauge/HydrologicalConditions.vue	Tue Apr 16 11:22:32 2019 +0200
@@ -328,18 +328,10 @@
         .attr("clip-path", "url(#clip)")
         .attr("stroke-width", 2)
         .attr("fill", "none");
-      this.svg
-        .selectAll(".line.mean")
-        .attr("stroke", "red");
-      this.svg
-        .selectAll(".line.median")
-        .attr("stroke", "black");
-      this.svg
-        .selectAll(".line.q25")
-        .attr("stroke", "orange");
-      this.svg
-        .selectAll(".line.q75")
-        .attr("stroke", "purple");
+      this.svg.selectAll(".line.mean").attr("stroke", "red");
+      this.svg.selectAll(".line.median").attr("stroke", "black");
+      this.svg.selectAll(".line.q25").attr("stroke", "orange");
+      this.svg.selectAll(".line.q75").attr("stroke", "purple");
       this.svg
         .selectAll(".area")
         .attr("clip-path", "url(#clip)")