Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rdjanuar committed Jan 9, 2025
1 parent 40e4f29 commit 0bef321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/InputMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function onUpdateOpen(value: boolean) {
function onRemoveTag(event: any) {
const modelValue = props.modelValue as SelectModelValue<T, V, M>[]
const filteredValue = modelValue.filter(value => !isEqual(value, ev))
const filteredValue = modelValue.filter(value => !isEqual(value, event))
emits('update:modelValue', filteredValue)
}
Expand Down

0 comments on commit 0bef321

Please sign in to comment.