Skip to content

Commit

Permalink
Merge pull request #3 from javstash/frontend
Browse files Browse the repository at this point in the history
Update SceneCard.tsx
  • Loading branch information
javstash authored Nov 15, 2024
2 parents 2bece61 + 692aa9b commit f08db95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/sceneCard/SceneCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ const SceneCard: FC<{ scene: Performance }> = ({ scene }) => (
<h6 className="text-truncate">{scene.title}</h6>
</Link>
</div>
<div className="d-flex">
<div className="text-muted">
<Link className="text-truncate w-100" to={sceneHref(scene)}>
<h6 className="text-truncate">{scene.code}</h6>
<strong>{scene.code}</strong>
</Link>
<span className="text-muted">
<span className="text-muted float-end">
{scene.duration ? formatDuration(scene.duration) : ""}
</span>
</div>
Expand Down

0 comments on commit f08db95

Please sign in to comment.