From dca0b11acdd62cc02d454ab8cd0d2e67fc2898a2 Mon Sep 17 00:00:00 2001 From: palashgdev Date: Wed, 15 Feb 2023 15:49:24 +0530 Subject: [PATCH] fix: onSearch callback is updated (#2266) --- frontend/src/container/LogsSearchFilter/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/container/LogsSearchFilter/index.tsx b/frontend/src/container/LogsSearchFilter/index.tsx index b124ab6c1a..3751b91487 100644 --- a/frontend/src/container/LogsSearchFilter/index.tsx +++ b/frontend/src/container/LogsSearchFilter/index.tsx @@ -186,8 +186,8 @@ function SearchFilter({ onChange={(e): void => { const { value } = e.target; setSearchText(value); - debouncedupdateQueryString(value); }} + onSearch={debouncedupdateQueryString} allowClear />