From 61674773fa6fbeec164035fe222fd2b5d467fa73 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 28 Aug 2024 18:54:09 +0200 Subject: [PATCH] fix: Correctly label `share via email` Signed-off-by: Ferdinand Thiessen --- src/components/pages/SharePage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pages/SharePage.vue b/src/components/pages/SharePage.vue index 0b01a7a6..a0b18e34 100644 --- a/src/components/pages/SharePage.vue +++ b/src/components/pages/SharePage.vue @@ -18,7 +18,7 @@ :key="entry.id" :class="$style.card" :href="entry.link" - :title="entry.id === 'mail' ? t('firstrunwizard', 'Share via email') : t('firstrunwizard', 'Share on {socialMedia}', { socialMedia: entry.name })"> + :title="entry.id === 'email' ? t('firstrunwizard', 'Share via email') : t('firstrunwizard', 'Share on {socialMedia}', { socialMedia: entry.name })">