# HG changeset patch # User Fadi Abbud # Date 1555406552 -7200 # Node ID cebbc1a8987bcc87e29b92e600d302fd322fd3a2 # Parent 6f5693bf780487174dcc0a8c6cec78f3bd38d938 client: linting diff -r 6f5693bf7804 -r cebbc1a8987b client/src/components/gauge/HydrologicalConditions.vue --- 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)")