aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/settings
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-05-25 11:03:13 +0000
committerMohamed Bassem <me@mbassem.com>2025-05-25 11:03:13 +0000
commite0ed727c7c32f2a16461d370dac3c1ba17707d39 (patch)
tree50abdac070ff40091e44ad0d05a86ba8c7d24d20 /apps/web/components/settings
parente13809fba6705f649ad3b907e1966974adf2e647 (diff)
downloadkarakeep-e0ed727c7c32f2a16461d370dac3c1ba17707d39.tar.zst
fix: Truncate the RSS feed url
Diffstat (limited to 'apps/web/components/settings')
-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" ? (