Change variable names to be clearer

This commit is contained in:
leigh-mil
2019-04-04 11:45:46 -04:00
parent 3f2beb44b2
commit 850153a517
2 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export default {
if (typeof this[name] !== undefined) {
this[name] = value
if (event['parent_uid'] === this._uid) {
this.disabled = false
this.changed = true
}
}
},
@@ -17,14 +17,14 @@ export default {
data: function() {
return {
disabled: this.disableSave,
changed: this.hasChanges,
}
},
props: {
disableSave: {
hasChanges: {
type: Boolean,
default: true,
default: false,
},
},
}