Skip to content

Commit

Permalink
fix: Truncate long release names in releases table
Browse files Browse the repository at this point in the history
  • Loading branch information
adityachoudhari26 committed Nov 1, 2024
1 parent 118f800 commit a027d4d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ export const DeploymentPageContent: React.FC<DeploymentPageContentProps> = ({
)}
>
<div className="flex items-center gap-2">
{release.name}{" "}
<span className="truncate">{release.name}</span>{" "}
<Badge
variant="secondary"
className="text-xs hover:bg-secondary"
className="flex-shrink-0 text-xs hover:bg-secondary"
>
{formatDistanceToNowStrict(release.createdAt, {
addSuffix: true,
Expand Down

0 comments on commit a027d4d

Please sign in to comment.