feat: add ProfileEditForm component for user profile editing, including avatar management, personal details, and email verification.
All checks were successful
Build and Deploy Frontend Learner / Build Frontend Learner Docker Image (push) Successful in 40s
Build and Deploy Frontend Learner / Deploy E-learning Frontend Learner to Dev Server (push) Successful in 3s
Build and Deploy Frontend Learner / Notify Deployment Status (push) Successful in 1s

This commit is contained in:
supalerk-ar66 2026-02-11 10:42:21 +07:00
parent 7b7f44620d
commit 82e39ebaf2

View file

@ -182,8 +182,10 @@ const handleFileUpload = (event: Event) => {
<div>
<label class="text-xs font-bold text-slate-500 dark:text-slate-400 ml-1 uppercase">{{ $t('profile.phone') }}</label>
<q-input
v-model="modelValue.phone"
:model-value="modelValue.phone"
@update:model-value="(val) => modelValue.phone = String(val || '').replace(/\D/g, '').slice(0, 10)"
outlined dense rounded
maxlength="10"
class="premium-q-input"
:rules="phoneRules"
hide-bottom-space