Skip to content

Commit

Permalink
fix: set back selectionOption filter
Browse files Browse the repository at this point in the history
Signed-off-by: Joris Mancini <[email protected]>
  • Loading branch information
TheMaskedTurtle committed May 23, 2024
1 parent 3b5d46f commit 42ce2a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ElementSearchDialog/element-search-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const ElementSearchDialog = (props: ElementSearchDialogProps) => {
id="element-search"
forcePopupIcon={false}
fullWidth
onInputChange={(_event, value) => {
if (!searchTermDisabled) {
onInputChange={(_event, value, reason) => {
if (!searchTermDisabled && reason !== 'reset') {
onSearchTermChange(value);
}
}}
Expand Down

0 comments on commit 42ce2a3

Please sign in to comment.