aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorKevin Silva <kevin.silva@sonarsource.com>2023-12-06 11:22:09 +0100
committersonartech <sonartech@sonarsource.com>2023-12-06 20:02:46 +0000
commit160ec1c685f0eae5bfc4e0032e901b51f06258e5 (patch)
tree96536a74a3732ebffaca218131279cb920ceb392 /server/sonar-web
parentacb6b2e854f7538692b28b0cf92d70cc62404399 (diff)
downloadsonarqube-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.tsx1
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],
);