feat: Add tooltips to stage timeline dots showing stage name on hover

This commit is contained in:
jlightner 2026-03-31 17:30:45 +00:00
parent c1583820ea
commit 44f2fbd4d6

View file

@ -645,7 +645,7 @@ function StageTimeline({ video }: { video: PipelineVideoItem }) {
return (
<div key={stage.key} className={`stage-timeline__step ${stateClass}`}>
<div className="stage-timeline__dot" />
<div className="stage-timeline__dot" title={stage.label} />
<span className="stage-timeline__label">{stage.label}</span>
</div>
);