|
@@ -460,7 +460,7 @@ const Overview = () => {
|
|
<InfoRow>
|
|
<InfoRow>
|
|
<InfoLabel>{collectionTrans('description')}</InfoLabel>
|
|
<InfoLabel>{collectionTrans('description')}</InfoLabel>
|
|
<InfoValue>
|
|
<InfoValue>
|
|
- <Typography variant="body1">
|
|
|
|
|
|
+ <Typography variant="body2">
|
|
{collection?.description || '--'}
|
|
{collection?.description || '--'}
|
|
</Typography>
|
|
</Typography>
|
|
</InfoValue>
|
|
</InfoValue>
|
|
@@ -469,7 +469,7 @@ const Overview = () => {
|
|
<InfoRow>
|
|
<InfoRow>
|
|
<InfoLabel>{collectionTrans('createdTime')}</InfoLabel>
|
|
<InfoLabel>{collectionTrans('createdTime')}</InfoLabel>
|
|
<InfoValue>
|
|
<InfoValue>
|
|
- <Typography variant="body1">
|
|
|
|
|
|
+ <Typography variant="body2">
|
|
{new Date(collection.createdTime).toLocaleString()}
|
|
{new Date(collection.createdTime).toLocaleString()}
|
|
</Typography>
|
|
</Typography>
|
|
</InfoValue>
|
|
</InfoValue>
|
|
@@ -507,7 +507,7 @@ const Overview = () => {
|
|
</CustomToolTip>
|
|
</CustomToolTip>
|
|
</InfoLabel>
|
|
</InfoLabel>
|
|
<InfoValue>
|
|
<InfoValue>
|
|
- <Typography variant="body1">
|
|
|
|
|
|
+ <Typography variant="body2">
|
|
{collection.loaded ? collection.replicas?.length : '...'}
|
|
{collection.loaded ? collection.replicas?.length : '...'}
|
|
</Typography>
|
|
</Typography>
|
|
{collection.loaded && enableModifyReplica && (
|
|
{collection.loaded && enableModifyReplica && (
|
|
@@ -561,7 +561,7 @@ const Overview = () => {
|
|
)}
|
|
)}
|
|
</InfoLabel>
|
|
</InfoLabel>
|
|
<InfoValue>
|
|
<InfoValue>
|
|
- <Typography variant="body1">
|
|
|
|
|
|
+ <Typography variant="body2">
|
|
{formatNumber(Number(collection?.rowCount || '0'))}
|
|
{formatNumber(Number(collection?.rowCount || '0'))}
|
|
</Typography>
|
|
</Typography>
|
|
</InfoValue>
|
|
</InfoValue>
|