aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/dashboard/preview/LinkContentSection.tsx8
-rw-r--r--apps/web/lib/i18n/locales/en/translation.json3
2 files changed, 6 insertions, 5 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}
diff --git a/apps/web/lib/i18n/locales/en/translation.json b/apps/web/lib/i18n/locales/en/translation.json
index 1d99a96f..880730ce 100644
--- a/apps/web/lib/i18n/locales/en/translation.json
+++ b/apps/web/lib/i18n/locales/en/translation.json
@@ -289,7 +289,8 @@
},
"preview": {
"view_original": "View Original",
- "cached_content": "Cached Content"
+ "cached_content": "Cached Content",
+ "reader_view": "Reader View"
},
"editor": {
"quickly_focus": "You can quickly focus on this field by pressing ⌘ + E",