Skip to content

Commit b1cf370

Browse files
committed
fix: tenant navigation
1 parent 7f15c5b commit b1cf370

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/store/reducers/tenant/tenant.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {TTenantInfo} from '../../../types/api/tenant';
66
import {TENANT_INITIAL_PAGE_KEY} from '../../../utils/constants';
77
import {api} from '../api';
88

9-
import {TENANT_METRICS_TABS_IDS} from './constants';
9+
import {TENANT_DIAGNOSTICS_TABS_IDS, TENANT_METRICS_TABS_IDS} from './constants';
1010
import {tenantPageSchema} from './types';
1111
import type {
1212
TenantDiagnosticsTab,
@@ -24,6 +24,7 @@ const tenantPage = tenantPageSchema
2424
export const initialState: TenantState = {
2525
tenantPage,
2626
metricsTab: TENANT_METRICS_TABS_IDS.cpu,
27+
diagnosticsTab: TENANT_DIAGNOSTICS_TABS_IDS.overview,
2728
};
2829

2930
const slice = createSlice({

0 commit comments

Comments
 (0)