Skip to content

Commit 4749b01

Browse files
committed
Update stage-details.tsx
1 parent f115354 commit 4749b01

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

src/main/frontend/pipeline-console-view/pipeline-console/main/stage-details.tsx

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -50,25 +50,27 @@ export default function StageDetails({ stage }: StageDetailsProps) {
5050
{total(stage.totalDurationMillis)}
5151
</li>
5252
<li>
53-
<Tooltip text={exact(stage.startTimeMillis)}>
54-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
55-
<path
56-
d="M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"
57-
fill="none"
58-
stroke="currentColor"
59-
strokeMiterlimit="10"
60-
strokeWidth="32"
61-
/>
62-
<path
63-
fill="none"
64-
stroke="currentColor"
65-
strokeLinecap="round"
66-
strokeLinejoin="round"
67-
strokeWidth="32"
68-
d="M256 128v144h96"
69-
/>
70-
</svg>
71-
{started(stage.startTimeMillis)}
53+
<Tooltip content={exact(stage.startTimeMillis)}>
54+
<span>
55+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
56+
<path
57+
d="M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64z"
58+
fill="none"
59+
stroke="currentColor"
60+
strokeMiterlimit="10"
61+
strokeWidth="32"
62+
/>
63+
<path
64+
fill="none"
65+
stroke="currentColor"
66+
strokeLinecap="round"
67+
strokeLinejoin="round"
68+
strokeWidth="32"
69+
d="M256 128v144h96"
70+
/>
71+
</svg>
72+
{started(stage.startTimeMillis)}
73+
</span>
7274
</Tooltip>
7375
</li>
7476
{stage.pauseDurationMillis !== 0 && (

0 commit comments

Comments
 (0)