From 3fec79545c3fe5107ee3f79643eae3f59998f191 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Sat, 19 Sep 2026 00:49:11 -0700 Subject: [PATCH] Source link opens in a new tab --- src/components/common/SourceLink.tsx | 2 +- src/components/layout/TopBar.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/SourceLink.tsx b/src/components/common/SourceLink.tsx index 686d446..cdb79e4 100644 --- a/src/components/common/SourceLink.tsx +++ b/src/components/common/SourceLink.tsx @@ -14,7 +14,7 @@ import { sourceDownloadUrl } from '@/lib/sourceDownload'; export function SourceLink({ className }: { className?: string }) { const { t } = useTranslation(); return ( - + {t('source.download', 'Source code of this version ({{id}}), AGPL-3.0', { id: __SOURCE_ID__ })} ); diff --git a/src/components/layout/TopBar.tsx b/src/components/layout/TopBar.tsx index 0bf29e8..5db0c4c 100644 --- a/src/components/layout/TopBar.tsx +++ b/src/components/layout/TopBar.tsx @@ -217,7 +217,7 @@ export function TopBar() { )} - + {t('source.menu', 'Source code (AGPL-3.0)')}