From c7d0bb440b8e6bf4c625463b05ec390f1a7a27ab Mon Sep 17 00:00:00 2001 From: Revanshu Paliwal Date: Tue, 23 Jan 2024 11:01:29 +0100 Subject: SONAR-21422 Migrating projects management page to adopt new UI --- server/sonar-web/design-system/src/components/input/InputSearch.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/sonar-web/design-system/src') 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 c5b47c07fde..e3288bbc497 100644 --- a/server/sonar-web/design-system/src/components/input/InputSearch.tsx +++ b/server/sonar-web/design-system/src/components/input/InputSearch.tsx @@ -75,7 +75,6 @@ export function InputSearch(props: PropsWithChildren) { value: parentValue, searchInputAriaLabel, } = props; - const intl = useIntl(); const input = useRef(null); const [value, setValue] = useState(parentValue ?? ''); @@ -84,6 +83,7 @@ export function InputSearch(props: PropsWithChildren) { () => debounce((val: string) => { onChange(val); + setDirty(false); }, DEBOUNCE_DELAY), [onChange], ); -- cgit v1.2.3