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 <srikanth.chekuri92@gmail.com>
Co-authored-by: Yevhen Shevchenko <90138953+yeshev@users.noreply.github.com>
This commit is contained in:
Chintan Sudani 2023-04-18 11:28:44 +05:30 committed by GitHub
parent 041d347d50
commit 502b8b1ba8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ function Search({
const dispatch = useDispatch<Dispatch<AppActions>>();
useEffect(() => {
if (traces.filterLoading) {
if (!traces.filterLoading) {
const initialTags = parseTagsToQuery(traces.selectedTags);
if (!initialTags.isError) {
setValue(initialTags.payload);