From: Kevin Silva Date: Wed, 6 Dec 2023 10:22:09 +0000 (+0100) Subject: SONAR-21188 - Project search input issue while fast typing X-Git-Tag: 10.4.0.87286~355 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=160ec1c685f0eae5bfc4e0032e901b51f06258e5;p=sonarqube.git SONAR-21188 - Project search input issue while fast typing --- 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], );