Skip to content

Commit d9c4e1a

Browse files
committed
add title to team and univ names in TeamList
1 parent 1fa6614 commit d9c4e1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/teams/TeamList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function TeamItem({
7979
</TeamLink>
8080
</div>
8181
) : null}
82-
<h4 className="mb-1 text-ellipsis">
82+
<h4 className="mb-1 text-ellipsis" title={name}>
8383
<TeamLink id={teamId}>{name}</TeamLink>
8484
</h4>
8585
<div className="text-ellipsis">
@@ -96,7 +96,7 @@ function TeamItem({
9696
}}
9797
/>
9898
) : null}
99-
{university}
99+
<span title={university}>{university}</span>
100100
</TeamLink>
101101
</div>
102102
{memberNames ? (

0 commit comments

Comments
 (0)