feat(AppConnectionRow): embed skeleton in place of flow count
This commit is contained in:
@@ -153,10 +153,12 @@ function AppConnectionRow(props) {
|
|||||||
sx={{ display: ['none', 'inline-block'] }}
|
sx={{ display: ['none', 'inline-block'] }}
|
||||||
>
|
>
|
||||||
{formatMessage('connection.flowCount', {
|
{formatMessage('connection.flowCount', {
|
||||||
count: isConnectionFlowsLoading ? (
|
count: countTranslation(
|
||||||
<Skeleton variant="rounded" width={20} height={20} />
|
isConnectionFlowsLoading ? (
|
||||||
|
<Skeleton variant="text" width={15} />
|
||||||
) : (
|
) : (
|
||||||
countTranslation(flowCount)
|
flowCount
|
||||||
|
),
|
||||||
),
|
),
|
||||||
})}
|
})}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
Reference in New Issue
Block a user