feat: only show international phone number thing if + is missing
All checks were successful
Build Latest image / build-container (push) Successful in 45s
All checks were successful
Build Latest image / build-container (push) Successful in 45s
This commit is contained in:
@@ -120,7 +120,7 @@
|
|||||||
<label for="phone" class="block font-semibold mt-2">{{
|
<label for="phone" class="block font-semibold mt-2">{{
|
||||||
$t("phone_number")
|
$t("phone_number")
|
||||||
}}</label>
|
}}</label>
|
||||||
<div class="bg-blue-100 border border-blue-200 text-black rounded-lg p-4 mb-1" role="alert" tabindex="-1"
|
<div v-if="userdetails.phone!=='' && !userdetails.phone.includes('+')" class="bg-blue-100 border border-blue-200 text-black rounded-lg p-4 mb-1" role="alert" tabindex="-1"
|
||||||
aria-labelledby="hs-actions-label">
|
aria-labelledby="hs-actions-label">
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="shrink-0">
|
<div class="shrink-0">
|
||||||
|
|||||||
Reference in New Issue
Block a user