Skip to content

Commit c27d5f9

Browse files
committed
wrap url on smaller screens too
1 parent 6b03b6b commit c27d5f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/repositories/list/RepoListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const RepositoryListItem: FC<Props> = ({ configuration }) => {
3030
<div className="flex flex-col gap-1">
3131
<Text className="font-semibold">{configuration.name}</Text>
3232
{/* We show the url on a 2nd line for smaller screens since we hide the column */}
33-
<TextMuted className="inline md:hidden text-sm">{url}</TextMuted>
33+
<TextMuted className="inline md:hidden text-sm break-all">{url}</TextMuted>
3434
</div>
3535
</TableCell>
3636

0 commit comments

Comments
 (0)