From 9d2fed125013e3bbfbf9435678729cd05254a5e8 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 31 Mar 2025 21:14:43 +0200 Subject: [PATCH] fix(InputMenu): emit `change` on multiple item removal Fixes #3756 --- src/runtime/components/InputMenu.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/components/InputMenu.vue b/src/runtime/components/InputMenu.vue index 97a0a35b..8658b1db 100644 --- a/src/runtime/components/InputMenu.vue +++ b/src/runtime/components/InputMenu.vue @@ -344,6 +344,7 @@ function onRemoveTag(event: any) { const modelValue = props.modelValue as GetModelValue const filteredValue = modelValue.filter(value => !isEqual(value, event)) emits('update:modelValue', filteredValue as GetModelValue) + onUpdate(filteredValue) } }