From 160ec1c685f0eae5bfc4e0032e901b51f06258e5 Mon Sep 17 00:00:00 2001 From: Kevin Silva Date: Wed, 6 Dec 2023 11:22:09 +0100 Subject: [PATCH] SONAR-21188 - Project search input issue while fast typing --- .../sonar-web/design-system/src/components/input/InputSearch.tsx | 1 - 1 file changed, 1 deletion(-) 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], ); -- 2.39.5