Commit 85a03183 authored by baiyaaaaa's avatar baiyaaaaa Committed by GitHub

Merge pull request #2007 from Leopoldthecoder/select-disable

Select: fix disabled multiple tag delete
parents 190211d4 447dfe0d
...@@ -554,7 +554,7 @@ ...@@ -554,7 +554,7 @@
deleteTag(event, tag) { deleteTag(event, tag) {
let index = this.selected.indexOf(tag); let index = this.selected.indexOf(tag);
if (index > -1) { if (index > -1 && !this.disabled) {
this.value.splice(index, 1); this.value.splice(index, 1);
} }
event.stopPropagation(); 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