From 4f56867d752d13b40a43ddfd7840fbc37faa1c06 Mon Sep 17 00:00:00 2001 From: formsdev <136701234+formsdev@users.noreply.github.com> Date: Wed, 24 Jan 2024 14:04:01 +0530 Subject: [PATCH] fix phone input (#294) --- client/components/forms/PhoneInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/forms/PhoneInput.vue b/client/components/forms/PhoneInput.vue index 3a02392..8088d1b 100644 --- a/client/components/forms/PhoneInput.vue +++ b/client/components/forms/PhoneInput.vue @@ -11,7 +11,7 @@ :data="countries" :disabled="(disabled || countries.length===1)?true:null" :searchable="true" :search-keys="['name']" :option-key="'code'" :color="color" :has-error="hasValidation && form.errors.has(name)" - :placeholder="'Select a country'" :uppercase-labels="true" :theme="theme" @change="onChangeCountryCode" + :placeholder="'Select a country'" :uppercase-labels="true" :theme="theme" @update:model-value="onChangeCountryCode" >