# HG changeset patch # User Sascha L. Teichmann # Date 1558617946 -7200 # Node ID 44574af7e3d363c28404ab517fdf7fd9d33c9713 # Parent 5e284f39a08108a7d27daa3516d208c946283faf# Parent f2e8f8beb913be7eff03c574094adbf0c41f897b Merged. diff -r 5e284f39a081 -r 44574af7e3d3 client/src/components/fairway/AvailableFairwayDepth.vue --- 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 diff -r 5e284f39a081 -r 44574af7e3d3 client/src/store/fairwayavailability.js --- 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") } })