Commit 447dfe0d authored by Leopoldthecoder's avatar Leopoldthecoder

Select: fix disabled multiple tag delete

parent 190211d4
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment