Merge pull request 'HOTFIX: Send SMS using mobile instead phone' (!914) from hotFix-customer_sms into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #914
Reviewed-by: Carlos Satorres <carlossa@verdnatura.es>
This commit is contained in:
Javier Segarra 2024-11-12 11:13:32 +00:00
commit a76d63ff00
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const showSmsDialog = () => {
quasar.dialog({
component: VnSmsDialog,
componentProps: {
phone: $props.customer.phone || $props.customer.mobile,
phone: $props.customer.mobile || $props.customer.phone,
promise: sendSms,
},
});