comparison client/src/components/fairway/AvailableFairwayDepthDialogue.vue @ 4419:72de81520a6d

afDialog: use hf as shorthand for NullOrEmpty
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 18 Sep 2019 14:03:33 +0200
parents d6c38a22c71e
children 950fecfec4ca
comparison
equal deleted inserted replaced
4418:c0bfe7283384 4419:72de81520a6d
338 this.selectedEntry.properties.name 338 this.selectedEntry.properties.name
339 ]; 339 ];
340 }, 340 },
341 isComplete() { 341 isComplete() {
342 return ( 342 return (
343 this.from !== null && 343 !!this.from &&
344 this.to !== null && 344 !!this.to &&
345 this.frequency !== null && 345 !!this.frequency &&
346 this.los !== null && 346 !!this.los &&
347 this.selectedFairwayAvailabilityFeature !== null 347 this.selectedFairwayAvailabilityFeature !== null
348 ); 348 );
349 }, 349 },
350 type: { 350 type: {
351 get() { 351 get() {