Skip to content

Commit a415fbd

Browse files
committed
fix
1 parent 9b89044 commit a415fbd

File tree

1 file changed

+2
-2
lines changed
  • src/containers/Cluster/ClusterInfo/utils

1 file changed

+2
-2
lines changed

src/containers/Cluster/ClusterInfo/utils/utils.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const getInfo = (cluster: TClusterInfo, additionalInfo: InfoItem[]) => {
4242
if (dataCenters?.length) {
4343
info.push({
4444
label: i18n('label_dc'),
45-
value: <Tags tags={dataCenters} gap={2} className={b('dc')} />,
45+
value: <Tags tags={dataCenters} gap={1} className={b('dc')} />,
4646
});
4747
}
4848

@@ -64,7 +64,7 @@ export const getInfo = (cluster: TClusterInfo, additionalInfo: InfoItem[]) => {
6464
});
6565
info.push({
6666
label: i18n('label_nodes-state'),
67-
value: <Flex gap={2}>{nodesStates}</Flex>,
67+
value: <Flex gap={1}>{nodesStates}</Flex>,
6868
});
6969
}
7070

0 commit comments

Comments
 (0)