aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-04-21 01:01:58 +0000
committerMohamed Bassem <me@mbassem.com>2025-04-21 01:59:32 +0000
commitc42c2c3d2d6c2109d0a7331a764fdbcc9ccdf067 (patch)
treeda907e32112528afeebf44a3d8f714ed24afd4c3 /apps/web/components
parentcd632f295d896100207e1b02bfeb574175c07633 (diff)
downloadkarakeep-c42c2c3d2d6c2109d0a7331a764fdbcc9ccdf067.tar.zst
fix: Rename cached content into reader mode
Diffstat (limited to 'apps/web/components')
-rw-r--r--apps/web/components/dashboard/preview/LinkContentSection.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/web/components/dashboard/preview/LinkContentSection.tsx b/apps/web/components/dashboard/preview/LinkContentSection.tsx
index dd419fcd..f0277f3b 100644
--- a/apps/web/components/dashboard/preview/LinkContentSection.tsx
+++ b/apps/web/components/dashboard/preview/LinkContentSection.tsx
@@ -194,13 +194,13 @@ export default function LinkContentSection({
<div className="flex h-full flex-col items-center gap-2">
<Select onValueChange={setSection} value={section}>
<SelectTrigger className="w-fit">
- <SelectValue />
+ <span className="mr-2">
+ <SelectValue />
+ </span>
</SelectTrigger>
<SelectContent>
<SelectGroup>
- <SelectItem value="cached">
- {t("preview.cached_content")}
- </SelectItem>
+ <SelectItem value="cached">{t("preview.reader_view")}</SelectItem>
<SelectItem
value="screenshot"
disabled={!bookmark.content.screenshotAssetId}