Skip to content

Commit

Permalink
fix(NcSelect): simplify search handler
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler committed Oct 2, 2023
1 parent 02c44c3 commit 66147d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NcSelectTags/NcSelectTags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default {
:options="availableOptions"
:close-on-select="!multiple"
:model-value="localValue"
@search="searchString => search = searchString"
@search="search = $event"
@update:model-value="handleInput">
<template #option="option">
<NcEllipsisedOption :name="getOptionLabel(option)"
Expand Down

0 comments on commit 66147d9

Please sign in to comment.