feat: Add tooltips to stage timeline dots showing stage name on hover
This commit is contained in:
parent
c1583820ea
commit
44f2fbd4d6
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue