We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0e17f5 + 801fb55 commit 1142e7eCopy full SHA for 1142e7e
packages/traction-widget/components/TagSelector/TagSelector.vue
@@ -81,7 +81,7 @@ const handleChange = (val: any) => {
81
cacheOptions.value = cacheOptions.value.filter((item, index, self) => {
82
return self.findIndex(el => el.value === item.value) === index;
83
});
84
- cacheOptions.value = cacheOptions.value.filter(item => selectedList.value.includes(item.value));
+ cacheOptions.value = cacheOptions.value.filter(item => val.includes(item.value));
85
emit('selectorChange', val);
86
};
87
0 commit comments