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 7f15c5b commit b1cf370Copy full SHA for b1cf370
src/store/reducers/tenant/tenant.ts
@@ -6,7 +6,7 @@ import type {TTenantInfo} from '../../../types/api/tenant';
6
import {TENANT_INITIAL_PAGE_KEY} from '../../../utils/constants';
7
import {api} from '../api';
8
9
-import {TENANT_METRICS_TABS_IDS} from './constants';
+import {TENANT_DIAGNOSTICS_TABS_IDS, TENANT_METRICS_TABS_IDS} from './constants';
10
import {tenantPageSchema} from './types';
11
import type {
12
TenantDiagnosticsTab,
@@ -24,6 +24,7 @@ const tenantPage = tenantPageSchema
24
export const initialState: TenantState = {
25
tenantPage,
26
metricsTab: TENANT_METRICS_TABS_IDS.cpu,
27
+ diagnosticsTab: TENANT_DIAGNOSTICS_TABS_IDS.overview,
28
};
29
30
const slice = createSlice({
0 commit comments