# HG changeset patch # User Markus Kottlaender # Date 1542613904 -3600 # Node ID 181b8a947ecd52830f101f2b7fd64ed0d8f6f10f # Parent c636ce754148d76a6d2ed176abadc20b0aa2ac16 fixed property of null bug diff -r c636ce754148 -r 181b8a947ecd client/src/fairway/Fairwayprofile.vue --- a/client/src/fairway/Fairwayprofile.vue Mon Nov 19 08:33:03 2018 +0100 +++ b/client/src/fairway/Fairwayprofile.vue Mon Nov 19 08:51:44 2018 +0100 @@ -264,7 +264,9 @@ this.selectedBottleneck + " (" + new Date().toISOString() + ")"; }, coordinatesSelect(newValue) { - this.applyCoordinates(newValue); + if (newValue) { + this.applyCoordinates(newValue); + } } }, methods: {