Skip to content

Commit

Permalink
fix: tag explorer loading spinner (#1748)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelpashkovsky committed Nov 21, 2022
1 parent 6fcc988 commit c1c83c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webapp/javascript/redux/reducers/continuous/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
);
};

Expand Down

0 comments on commit c1c83c2

Please sign in to comment.