Skip to content

Commit 9c651b1

Browse files
committed
Added more line styling
1 parent d8f18f7 commit 9c651b1

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

apps/webapp/app/components/run/RunTimeline.tsx

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,7 @@ function buildTimelineItems(run: TimelineSpanRun): TimelineItem[] {
239239
items.push({
240240
type: "line",
241241
id: "executing",
242-
title: (
243-
<span className="flex items-center gap-1">
244-
<Spinner className="size-4" />
245-
<span>
246-
<LiveTimer startTime={run.executedAt} />
247-
</span>
248-
</span>
249-
),
242+
title: <LiveTimer startTime={run.executedAt} />,
250243
state,
251244
shouldRender: true,
252245
variant: "normal",
@@ -270,17 +263,10 @@ function buildTimelineItems(run: TimelineSpanRun): TimelineItem[] {
270263
items.push({
271264
type: "line",
272265
id: "legacy-waiting-or-executing",
273-
title: (
274-
<span className="flex items-center gap-1">
275-
<Spinner className="size-4" />
276-
<span>
277-
<LiveTimer startTime={run.startedAt} />
278-
</span>
279-
</span>
280-
),
266+
title: <LiveTimer startTime={run.startedAt} />,
281267
state,
282268
shouldRender: true,
283-
variant: "normal",
269+
variant: "light",
284270
});
285271
}
286272
}
@@ -454,7 +440,6 @@ function EventMarker({
454440
height: "100%",
455441
backgroundImage: `url(${tileBgPath})`,
456442
backgroundSize: "8px 8px",
457-
// backgroundPosition: "0px 2px",
458443
}
459444
: undefined
460445
}

0 commit comments

Comments
 (0)