Skip to content

Commit

Permalink
fix: Correctly label share via email
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Aug 29, 2024
1 parent cb52cb5 commit 6167477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/SharePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 })">
<NcIconSvgWrapper v-if="entry.icon"
:svg="entry.id !== 'email' ? entry.icon : undefined"
:path="entry.id === 'email' ? entry.icon : undefined" />
Expand Down

0 comments on commit 6167477

Please sign in to comment.