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 d2e43d4 commit 28a9936Copy full SHA for 28a9936
src/containers/Cluster/ClusterInfo/ClusterInfo.tsx
@@ -57,6 +57,13 @@ const getInfo = (
57
});
58
}
59
60
+ if (cluster.Tenants) {
61
+ info.push({
62
+ label: 'Databases',
63
+ value: cluster.Tenants,
64
+ });
65
+ }
66
+
67
info.push(
68
{
69
label: 'Nodes',
src/containers/Cluster/ClusterInfoSkeleton/ClusterInfoSkeleton.tsx
@@ -18,7 +18,7 @@ interface ClusterInfoSkeletonProps {
18
rows?: number;
19
20
21
-export const ClusterInfoSkeleton = ({rows = 6, className}: ClusterInfoSkeletonProps) => (
+export const ClusterInfoSkeleton = ({rows = 7, className}: ClusterInfoSkeletonProps) => (
22
<div className={b(null, className)}>
23
{[...new Array(rows)].map((_, index) => (
24
<div className={b('row')} key={`skeleton-row-${index}`}>
0 commit comments