Skip to content

Commit

Permalink
Merge pull request #407 from MTES-MCT/406-bug-timeline-statuts-doiven…
Browse files Browse the repository at this point in the history
…t-être-souligné-quand-sélectionné

bugfix(406) add text-decoration underline when status is selected
  • Loading branch information
aleckvincent authored Oct 22, 2024
2 parents 5563431 + b58d522 commit e6ff37a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ const ActionStatus: FC<MissionTimelineItemProps> = ({ action, previousActionWith
style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis'
textOverflow: 'ellipsis',
textDecoration: isSelected ? 'underline' : 'none'
}}
data-testid="timeline-item-status-description"
>
Expand Down

0 comments on commit e6ff37a

Please sign in to comment.