Remove inset_form prop from options inputs

This commit is contained in:
graham-dds
2019-08-27 16:06:56 -04:00
parent 1901172d6e
commit 981171d8db
3 changed files with 5 additions and 8 deletions

View File

@@ -22,7 +22,6 @@ export default {
type: String,
default: '',
},
insetForm: Boolean,
},
created: function() {
@@ -37,7 +36,7 @@ export default {
const showError = (this.initialErrors && this.initialErrors.length) || false
return {
showError: showError,
showValid: !this.insetForm && (!showError && !!this.initialValue),
showValid: false,
validationError: this.initialErrors.join(' '),
value: this.initialValue,
}