Skip to content

Commit ddfed5d

Browse files
committed
fix: wrap AppStatus component in a div for proper styling
1 parent 43c70c1 commit ddfed5d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/components/v2/chartDeploymentHistory/ChartDeploymentHistory.component.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -337,12 +337,14 @@ const ChartDeploymentHistory = ({
337337
gridColumnGap: '12px',
338338
}}
339339
>
340-
<AppStatus
341-
status={getDeploymentStatus(deployment)}
342-
hideMessage
343-
iconSize={24}
344-
hideIconTooltip
345-
/>
340+
<div className="flex icon-dim-24 dc__no-shrink">
341+
<AppStatus
342+
status={getDeploymentStatus(deployment)}
343+
hideMessage
344+
iconSize={24}
345+
hideIconTooltip
346+
/>
347+
</div>
346348
<div className="flex column left dc__ellipsis-right">
347349
<div className="cn-9 fs-14" data-testid="chart-deployment-time">
348350
{moment(new Date(deployment.deployedAt.seconds * 1000)).format(

0 commit comments

Comments
 (0)