We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fcc988 commit c1c83c2Copy full SHA for c1c83c2
webapp/javascript/redux/reducers/continuous/selectors.ts
@@ -36,7 +36,9 @@ export const selectIsLoadingData = (state: RootState) => {
36
loadingStates.includes(state.continuous.leftTimeline.type) ||
37
loadingStates.includes(state.continuous.rightTimeline.type) ||
38
// Exemplars
39
- loadingStates.includes(state.tracing.exemplarsSingleView.type)
+ loadingStates.includes(state.tracing.exemplarsSingleView.type) ||
40
+ // Tag Explorer
41
+ loadingStates.includes(state.continuous.tagExplorerView.type)
42
);
43
};
44
0 commit comments