Select: fix disabled multiple tag delete

This commit is contained in:
Leopoldthecoder 2016-12-27 11:55:00 +08:00
parent 190211d4a9
commit 447dfe0d44

View File

@ -554,7 +554,7 @@
deleteTag(event, tag) {
let index = this.selected.indexOf(tag);
if (index > -1) {
if (index > -1 && !this.disabled) {
this.value.splice(index, 1);
}
event.stopPropagation();