File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
apps/webapp/app/components/runs/v3 Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -112,18 +112,17 @@ export function WaitpointDetailTable({
112
112
</ Property . Item >
113
113
</ >
114
114
) }
115
+ < Property . Item >
116
+ < Property . Label > Completed</ Property . Label >
117
+ < Property . Value >
118
+ { waitpoint . completedAt ? < DateTimeAccurate date = { waitpoint . completedAt } /> : "–" }
119
+ </ Property . Value >
120
+ </ Property . Item >
115
121
{ waitpoint . status === "WAITING" ? null : waitpoint . status === "TIMED_OUT" ? (
116
122
< > </ >
117
123
) : waitpoint . output ? (
118
124
< PacketDisplay title = "Output" data = { waitpoint . output } dataType = { waitpoint . outputType } />
119
- ) : waitpoint . completedAfter ? (
120
- < Property . Item >
121
- < Property . Label > Completed at</ Property . Label >
122
- < Property . Value >
123
- < DateTimeAccurate date = { waitpoint . completedAfter } />
124
- </ Property . Value >
125
- </ Property . Item >
126
- ) : (
125
+ ) : waitpoint . completedAfter ? null : (
127
126
"Completed with no output"
128
127
) }
129
128
</ Property . Table >
You can’t perform that action at this time.
0 commit comments