various small fixes

This commit is contained in:
dandds
2019-03-26 17:08:45 -04:00
parent d158f1ea7e
commit 21a1cc4c1f
2 changed files with 3 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ export default {
if (!this.modified && this.initialErrors && this.initialErrors.length) {
valid = false
} else if (this.optional && value == '') {
} else if (this.optional && value === '') {
valid = true
}