Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
OlliL committed Nov 24, 2024
1 parent c3ae4de commit 896d85b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/DivFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@
type="text"
:placeholder="placeholder"
:value="props.modelValue"
@input="emit('update:modelValue', $event.target.value)"
@input="
emit(
'update:modelValue',
(($event as InputEvent)?.target as HTMLInputElement)?.value,
)
"
/>
<div
class="form-check form-switch align-self-center ms-2"
Expand Down

0 comments on commit 896d85b

Please sign in to comment.