mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2026-04-14 06:41:59 +02:00
fix: multi select state handling (#1094)
This commit is contained in:
@@ -32,7 +32,8 @@ const selectedItems = ref<string[]>(props.modelValue)
|
||||
|
||||
watch(
|
||||
() => selectedItems.value,
|
||||
(value) => emit('update:modelValue', value)
|
||||
(value) => emit('update:modelValue', value),
|
||||
{ deep: true }
|
||||
)
|
||||
|
||||
const filteredItems = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user