Skip to content

Commit

Permalink
Merge pull request #3708 from nextcloud/fix/translation
Browse files Browse the repository at this point in the history
fix placeholder for email input
  • Loading branch information
dartcafe authored Sep 12, 2024
2 parents f50f606 + 70b0a89 commit fb39226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/Public/PublicRegisterModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
v-model="emailAddress"
class="section__email"
:signaling-class="checkStatus.email"
:placeholder="t('polls', share.publicPollEmail === 'mandatory' ? 'Email address (mandatory)' : 'Email address (optional)')"
:placeholder="share.publicPollEmail === 'mandatory' ? t('polls', 'Email address (mandatory)') : t('polls', 'Email address (optional)')"
:helper-text="emailAddressHint"
type="email"
inputmode="email"
Expand Down

0 comments on commit fb39226

Please sign in to comment.