Enable clearing of list value in item card [SCI-10031]

This commit is contained in:
Martin Artnik 2024-01-18 10:22:57 +01:00
parent 91287726c4
commit dca868ac49

View file

@ -86,9 +86,7 @@ export default {
methods: {
changeSelected(value) {
this.selected = value;
if (value) {
this.update(value);
}
this.update(value);
}
}
};