FIX: improves tag-list setting (#9574)

- Prevents setting to display an empty tag
- Updates dropdown when selecting/removing tag
This commit is contained in:
Joffrey JAFFEUX
2020-04-28 20:05:30 +02:00
committed by GitHub
parent 1e603d7003
commit a8308e73e7
3 changed files with 20 additions and 8 deletions

View File

@@ -66,8 +66,12 @@ export default MultiSelectComponent.extend(TagsMixin, {
}),
actions: {
onChange(value) {
this.set("tags", value);
onChange(value, items) {
if (this.attrs.onChange) {
this.attrs.onChange(value, items);
} else {
this.set("tags", value);
}
}
},