Lint error fix

This commit is contained in:
sayali 2020-08-18 20:03:15 -07:00
parent d41227327e
commit 5b96b3a032
2 changed files with 7 additions and 3 deletions

View File

@ -167,8 +167,10 @@ angular.module('lemur')
},
setValidityEndDateRange: function (value) {
// clear selected validity end date as we are about to calculate new range
if(this.validityEnd) this.validityEnd = '';
if(this.validityEnd) {
this.validityEnd = '';
}
// Minimum end date will be same as selected start date
this.authority.authorityCertificate.minValidityEnd = value;

View File

@ -147,7 +147,9 @@ angular.module('lemur')
},
setValidityEndDateRange: function (value) {
// clear selected validity end date as we are about to calculate new range
if(this.validityEnd) this.validityEnd = '';
if(this.validityEnd) {
this.validityEnd = '';
}
// Minimum end date will be same as selected start date
this.authority.authorityCertificate.minValidityEnd = value;