From ad09c5dc5f04098a197f1dd23d9c36c4d631ee50 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Mon, 20 Dec 2021 08:48:09 +0530 Subject: [PATCH] bug: Fixes pressing enter key not submitting values in widget. (#3610) --- app/javascript/widget/components/template/EmailInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/widget/components/template/EmailInput.vue b/app/javascript/widget/components/template/EmailInput.vue index f2c63766c..d133ccda3 100644 --- a/app/javascript/widget/components/template/EmailInput.vue +++ b/app/javascript/widget/components/template/EmailInput.vue @@ -11,7 +11,7 @@ :placeholder="$t('EMAIL_PLACEHOLDER')" :class="{ error: $v.email.$error }" @input="$v.email.$touch" - @keyup.enter="onSubmit" + @keydown.enter="onSubmit" />