From 502b8b1ba8e9387ba2a1b86585370a40afd9b7ed Mon Sep 17 00:00:00 2001 From: Chintan Sudani <46838508+techchintan@users.noreply.github.com> Date: Tue, 18 Apr 2023 11:28:44 +0530 Subject: [PATCH] fix: tag filters query missing on page reload (#2580) * fix: remove frontend code owner * chore: set Cache-Control for auto complete requests (#2504) * feat(filter): add group by filter (#2538) * fix: tag filters query missing on page reload --------- Co-authored-by: Srikanth Chekuri Co-authored-by: Yevhen Shevchenko <90138953+yeshev@users.noreply.github.com> --- frontend/src/container/Trace/Search/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/container/Trace/Search/index.tsx b/frontend/src/container/Trace/Search/index.tsx index d9b4741082..099059ac80 100644 --- a/frontend/src/container/Trace/Search/index.tsx +++ b/frontend/src/container/Trace/Search/index.tsx @@ -27,7 +27,7 @@ function Search({ const dispatch = useDispatch>(); useEffect(() => { - if (traces.filterLoading) { + if (!traces.filterLoading) { const initialTags = parseTagsToQuery(traces.selectedTags); if (!initialTags.isError) { setValue(initialTags.payload);