Remove conditional before assigning clinNumber because an empty string was returning false

This commit is contained in:
leigh-mil 2019-09-04 11:04:05 -04:00
parent 1b6a3ca644
commit 08b4513797

View File

@ -123,7 +123,7 @@ export default {
if (!!event.value) this.endDate = new Date(event.value)
this.validatePop()
} else if (event.name.includes(NUMBER)) {
if (!!event.value) this.clinNumber = event.value
this.clinNumber = event.value
}
}
},