diff --git a/frontend/components/global/ComboBox.vue b/frontend/components/global/ComboBox.vue index 70535bd..42a3718 100644 --- a/frontend/components/global/ComboBox.vue +++ b/frontend/components/global/ComboBox.vue @@ -47,9 +47,7 @@ watch( watch( () => modelValue.value, (newValue) => { - const target = options.value - .flatMap((option) => option.children) - .find((child) => child.id == newValue); + const target = options.value.flatMap((option) => option.children).find((child) => child.id == newValue); value.value = target || undefined; }, @@ -58,9 +56,13 @@ watch(