diff options
author | Kevin Silva <kevin.silva@sonarsource.com> | 2023-12-06 11:22:09 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-12-06 20:02:46 +0000 |
commit | 160ec1c685f0eae5bfc4e0032e901b51f06258e5 (patch) | |
tree | 96536a74a3732ebffaca218131279cb920ceb392 /server/sonar-web | |
parent | acb6b2e854f7538692b28b0cf92d70cc62404399 (diff) | |
download | sonarqube-160ec1c685f0eae5bfc4e0032e901b51f06258e5.tar.gz sonarqube-160ec1c685f0eae5bfc4e0032e901b51f06258e5.zip |
SONAR-21188 - Project search input issue while fast typing
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/design-system/src/components/input/InputSearch.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/sonar-web/design-system/src/components/input/InputSearch.tsx b/server/sonar-web/design-system/src/components/input/InputSearch.tsx index 77f9a0de135..879b12165cb 100644 --- a/server/sonar-web/design-system/src/components/input/InputSearch.tsx +++ b/server/sonar-web/design-system/src/components/input/InputSearch.tsx @@ -81,7 +81,6 @@ export function InputSearch({ () => debounce((val: string) => { onChange(val); - setDirty(false); }, DEBOUNCE_DELAY), [onChange], ); |