# HG changeset patch # User Thomas Junk # Date 1568808213 -7200 # Node ID 72de81520a6dd8002d74807f4ebd39f018d2edbf # Parent c0bfe7283384c7d5614f6a1383ecffef4ea93f8c afDialog: use hf as shorthand for NullOrEmpty diff -r c0bfe7283384 -r 72de81520a6d client/src/components/fairway/AvailableFairwayDepthDialogue.vue --- a/client/src/components/fairway/AvailableFairwayDepthDialogue.vue Wed Sep 18 13:47:52 2019 +0200 +++ b/client/src/components/fairway/AvailableFairwayDepthDialogue.vue Wed Sep 18 14:03:33 2019 +0200 @@ -340,10 +340,10 @@ }, isComplete() { return ( - this.from !== null && - this.to !== null && - this.frequency !== null && - this.los !== null && + !!this.from && + !!this.to && + !!this.frequency && + !!this.los && this.selectedFairwayAvailabilityFeature !== null ); },