From c1c83c290997b5b93e86ce7f7c29eaa49d809ee7 Mon Sep 17 00:00:00 2001 From: pavelpashkovsky Date: Mon, 21 Nov 2022 16:59:02 +0300 Subject: [PATCH] fix: tag explorer loading spinner (#1748) --- webapp/javascript/redux/reducers/continuous/selectors.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webapp/javascript/redux/reducers/continuous/selectors.ts b/webapp/javascript/redux/reducers/continuous/selectors.ts index 0df394f30c..c11f9fca59 100644 --- a/webapp/javascript/redux/reducers/continuous/selectors.ts +++ b/webapp/javascript/redux/reducers/continuous/selectors.ts @@ -36,7 +36,9 @@ export const selectIsLoadingData = (state: RootState) => { loadingStates.includes(state.continuous.leftTimeline.type) || loadingStates.includes(state.continuous.rightTimeline.type) || // Exemplars - loadingStates.includes(state.tracing.exemplarsSingleView.type) + loadingStates.includes(state.tracing.exemplarsSingleView.type) || + // Tag Explorer + loadingStates.includes(state.continuous.tagExplorerView.type) ); };