# HG changeset patch # User Thomas Junk # Date 1571214660 -7200 # Node ID 899bec1bd1c9b2a48d2d229ee7cde78d8b7f5ef2 # Parent 2690933e404cd8396fb402ccb1d3d4d4783ab373 fairway_profile: make selection of custom depth continuous till the end of the diagram diff -r 2690933e404c -r 899bec1bd1c9 client/src/components/fairway/Fairwayprofile.vue --- a/client/src/components/fairway/Fairwayprofile.vue Tue Oct 15 20:49:24 2019 +0200 +++ b/client/src/components/fairway/Fairwayprofile.vue Wed Oct 16 10:31:00 2019 +0200 @@ -468,7 +468,7 @@ data.coordinates.forEach(coordinates => { const [startPoint, endPoint, depth] = coordinates; let customdepth = - this.depth < this.maxAlt + this.depth < this.maxAlt * 1.1 ? this.depth : this.maxAlt * 1.1 + (this.waterlevel - this.refWaterlevel) / 100;