From 70b0a89ef5a653d345282542706c56ced7284433 Mon Sep 17 00:00:00 2001 From: dartcafe Date: Thu, 12 Sep 2024 23:31:40 +0200 Subject: [PATCH] fix placeholder for email input Signed-off-by: dartcafe --- src/js/components/Public/PublicRegisterModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/components/Public/PublicRegisterModal.vue b/src/js/components/Public/PublicRegisterModal.vue index 409927b56..f2bfa7647 100644 --- a/src/js/components/Public/PublicRegisterModal.vue +++ b/src/js/components/Public/PublicRegisterModal.vue @@ -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"