changeset 3413:44574af7e3d3

Merged.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 23 May 2019 15:25:46 +0200
parents 5e284f39a081 (current diff) f2e8f8beb913 (diff)
children 0e54eca5d499 b9fc6c546610
files
diffstat 2 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/fairway/AvailableFairwayDepth.vue	Thu May 23 15:25:24 2019 +0200
+++ b/client/src/components/fairway/AvailableFairwayDepth.vue	Thu May 23 15:25:46 2019 +0200
@@ -530,7 +530,7 @@
           const value = Number.parseFloat(hoursInDays(d.ldc)).toFixed(2);
           d3.select("#tooltip")
             .text(value)
-            .attr("y", y - 40)
+            .attr("y", y - 50)
             .attr("x", d3.event.pageX - dy);
           //d3.event.pageX gives coordinates relative to SVG
           //dy gives offset of svg on page
@@ -564,7 +564,7 @@
           );
           d3.select("#tooltip")
             .text(value)
-            .attr("y", y - 40)
+            .attr("y", y - 50)
             .attr("x", d3.event.pageX - dy);
           //d3.event.pageX gives coordinates relative to SVG
           //dy gives offset of svg on page
--- a/client/src/store/fairwayavailability.js	Thu May 23 15:25:24 2019 +0200
+++ b/client/src/store/fairwayavailability.js	Thu May 23 15:25:46 2019 +0200
@@ -204,7 +204,6 @@
         const URL = `/data/${endpoint}/fairway-depth/${encodeURIComponent(
           name
         )}?from=${from}T${start}&to=${to}T${end}&mode=${frequency}&los=${LOS}${additionalParams}`;
-        console.log(URL);
         HTTP.get(URL, {
           headers: { "X-Gemma-Auth": localStorage.getItem("token") }
         })