Skip to content

Commit cf1ddc3

Browse files
authored
fix: add required field SubDomainKey to getNodes (#2047)
1 parent 74f7a58 commit cf1ddc3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/containers/Cluster/Cluster.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function Cluster({
7272
const clusterTitle = metaClusterTitle ?? viewerClusterTitle;
7373

7474
const {
75-
data: {clusterData: cluster = {}, groupsStats} = {},
75+
data: {clusterData: cluster, groupsStats} = {},
7676
isLoading: infoLoading,
7777
error,
7878
} = clusterApi.useGetClusterInfoQuery(clusterName ?? undefined);
@@ -121,7 +121,7 @@ export function Cluster({
121121
</div>
122122
{isClusterDashboardAvailable && (
123123
<ClusterDashboard
124-
cluster={cluster}
124+
cluster={cluster ?? {}}
125125
groupStats={groupsStats}
126126
loading={infoLoading}
127127
error={clusterError || cluster?.error}
@@ -193,7 +193,7 @@ export function Cluster({
193193
getLocationObjectFromHref(getClusterPath(clusterTabsIds.versions)).pathname
194194
}
195195
>
196-
<Versions cluster={cluster} />
196+
{cluster && <Versions cluster={cluster} />}
197197
</Route>
198198
<Route
199199
render={() => (

src/containers/Versions/Versions.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import './Versions.scss';
2020
const b = cn('ydb-versions');
2121

2222
interface VersionsProps {
23-
cluster?: TClusterInfo;
23+
cluster: TClusterInfo;
2424
}
2525

2626
export const Versions = ({cluster}: VersionsProps) => {
@@ -29,7 +29,7 @@ export const Versions = ({cluster}: VersionsProps) => {
2929

3030
const versionsValues = useGetVersionValues(cluster, versionToColor);
3131
const {currentData, isLoading: isNodesLoading} = nodesApi.useGetNodesQuery(
32-
{tablets: false, fieldsRequired: ['SystemState']},
32+
{tablets: false, fieldsRequired: ['SystemState', 'SubDomainKey']},
3333
{pollingInterval: autoRefreshInterval},
3434
);
3535

src/containers/Versions/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const useGetVersionValues = (cluster?: TClusterInfo, versionToColor?: Ver
2222
? skipToken
2323
: {
2424
tablets: false,
25-
fieldsRequired: ['SystemState'],
25+
fieldsRequired: ['SystemState', 'SubDomainKey'],
2626
group: 'Version',
2727
},
2828
);

0 commit comments

Comments
 (0)