Allow roles to be revoked many times
This commit is contained in:
@@ -31,14 +31,21 @@ export default {
|
||||
|
||||
methods: {
|
||||
change: function (e) {
|
||||
e.preventDefault()
|
||||
this.new_role = this.revoke ? "" : e.target.value
|
||||
this.new_role = e.target.value
|
||||
},
|
||||
cancel: function () {
|
||||
this.new_role = this.initialData
|
||||
},
|
||||
},
|
||||
|
||||
watch: {
|
||||
revoke: function (val) {
|
||||
if (val) {
|
||||
this.new_role = ""
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
displayName: function () {
|
||||
const newRole = this.newRole
|
||||
@@ -53,7 +60,7 @@ export default {
|
||||
"label" : "label label--success"
|
||||
},
|
||||
newRole: function () {
|
||||
return this.revoke ? "" : this.new_role
|
||||
return this.new_role
|
||||
}
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user