Merge pull request #382 from dod-ccpo/make-approver-name-optional

Make CCPO approver name optional
This commit is contained in:
richard-dds 2018-10-12 10:15:26 -04:00 committed by GitHub
commit 56cb21e821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ export default {
} else if (invalidate) {
this.showError = true
}
this.showValid = valid
this.showValid = this.value != "" && valid
// Emit a change event
this.$root.$emit('field-change', {

View File

@ -5,7 +5,7 @@ import createAutoCorrectedDatePipe from 'text-mask-addons/dist/createAutoCorrect
export default {
anything: {
mask: false,
match: /^(?!\s*$).+/,
match: /\s*/,
unmask: [],
validationError: 'Please enter a response'
},