Skip to content

Commit

Permalink
[@mantine/core] TagsInput: Fix existing search value being ignored in…
Browse files Browse the repository at this point in the history
… `onPaste` even handler (#6073)
  • Loading branch information
rtivital committed May 10, 2024
1 parent 3cc0cd0 commit 80dcf5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export const TagsInput = factory<TagsInputFactory>((_props, ref) => {
splitChars,
allowDuplicates,
maxTags,
value: pastedText,
value: `${_searchValue}${pastedText}`,
currentTags: _value,
})
);
Expand Down

0 comments on commit 80dcf5d

Please sign in to comment.