Skip to content

Commit 53b6d6d

Browse files
committed
Fixed timeline state
1 parent 2ec5234 commit 53b6d6d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
import { Fragment, ReactNode, useState } from "react";
99
import { cn } from "~/utils/cn";
1010
import { DateTime, DateTimeAccurate } from "../primitives/DateTime";
11-
import { Spinner } from "../primitives/Spinner";
1211
import { LiveTimer } from "../runs/v3/LiveTimer";
1312
import tileBgPath from "~/assets/images/[email protected]";
1413
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "../primitives/Tooltip";
@@ -544,7 +543,7 @@ function LineMarker({
544543
<div className={cn("relative w-px", containerClass)}>
545544
{state === "inprogress" && (
546545
<div
547-
className="absolute inset-0 h-full w-full animate-tile-scroll opacity-30"
546+
className="absolute inset-0 h-full w-full animate-tile-scroll opacity-50"
548547
style={{
549548
backgroundImage: `url(${tileBgPath})`,
550549
backgroundSize: "8px 8px",
@@ -632,7 +631,7 @@ export function SpanTimeline({
632631
<RunTimelineLine
633632
title={<LiveTimer startTime={startTime} />}
634633
state={state}
635-
variant={visibleEvents.length > 0 ? "light" : "normal"}
634+
variant="normal"
636635
style={style}
637636
/>
638637
) : (

0 commit comments

Comments
 (0)