Skip to content

Commit

Permalink
fix(page.tsx): add max width to userAgent table cell to prevent overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chronark committed Sep 2, 2023
1 parent 0a7401e commit 9b982e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default async function KeyPage(props: { params: { keyId: string } }) {
</span>
</TableCell>
<TableCell>{verification.requestedResource}</TableCell>
<TableCell className="truncate">{verification.userAgent}</TableCell>
<TableCell className="max-w-sm truncate">{verification.userAgent}</TableCell>
<TableCell>{verification.ipAddress}</TableCell>
<TableCell>{verification.region}</TableCell>
<TableCell>
Expand Down

1 comment on commit 9b982e6

@vercel
Copy link

@vercel vercel bot commented on 9b982e6 Sep 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

unkey – ./

unkey.vercel.app
unkey.dev
unkey-git-main-unkey.vercel.app
www.unkey.dev
unkey-unkey.vercel.app

Please sign in to comment.