Skip to content

Commit

Permalink
[frontend] Do not submit on blur if the search value has not changed (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkha authored and Goumies committed Mar 13, 2024
1 parent 60e677f commit 7a08456
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions opencti-platform/opencti-front/src/components/SearchInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,6 @@ const SearchInput = (props) => {
onSubmit(value);
}
}}
onBlur={(event) => {
const { value } = event.target;
onSubmit(value);
}}
InputProps={{
startAdornment: (
<InputAdornment position="start">
Expand Down

0 comments on commit 7a08456

Please sign in to comment.