phone number should be optional on add new portfolio member form

This commit is contained in:
dandds
2019-03-25 13:36:54 -04:00
parent ec794abbf2
commit e6fd32f612
3 changed files with 10 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ export default {
},
paragraph: String,
noMaxWidth: String,
optional: Boolean,
},
data: function() {
@@ -82,7 +83,9 @@ export default {
},
onBlur: function(e) {
this._checkIfValid({ value: e.target.value.trim(), invalidate: true })
if (!(this.optional && e.target.value === "")) {
this._checkIfValid({ value: e.target.value.trim(), invalidate: true })
}
this.value = e.target.value.trim()
if (this.validation === 'dollars') {
@@ -97,6 +100,8 @@ export default {
if (!this.modified && this.initialErrors && this.initialErrors.length) {
valid = false
} else if (this.optional && value == "") {
valid = true
}
if (this.modified) {