aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/settings/FeedSettings.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/web/components/settings/FeedSettings.tsx b/apps/web/components/settings/FeedSettings.tsx
index 438ec760..fa019cf6 100644
--- a/apps/web/components/settings/FeedSettings.tsx
+++ b/apps/web/components/settings/FeedSettings.tsx
@@ -346,7 +346,12 @@ export function FeedRow({ feed }: { feed: ZFeed }) {
{feed.name}
</Link>
</TableCell>
- <TableCell>{feed.url}</TableCell>
+ <TableCell
+ className="max-w-64 overflow-clip text-ellipsis"
+ title={feed.url}
+ >
+ {feed.url}
+ </TableCell>
<TableCell>{feed.lastFetchedAt?.toLocaleString()}</TableCell>
<TableCell>
{feed.lastFetchedStatus === "success" ? (