Skip to content

Commit

Permalink
fix: truncate filename
Browse files Browse the repository at this point in the history
  • Loading branch information
mfts committed Sep 26, 2024
1 parent 4070ebc commit 721505d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/upload-notification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function UploadNotificationDrawer({
href={`/documents/${upload.documentId}`}
className="flex items-center justify-between"
>
<span>{upload.fileName}</span>
<span className="w-72 truncate">{upload.fileName}</span>
{upload.progress === 100 ? (
<CheckIcon
className="h-6 w-6 rounded-full bg-emerald-500 p-1 text-background"
Expand Down

0 comments on commit 721505d

Please sign in to comment.