From 6355993c14e01955c45ebd32b4f7185cae092fc8 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Tue, 12 Nov 2024 11:00:05 +0000 Subject: [PATCH] fix: mobile is more relevant than phone --- src/pages/Customer/Card/CustomerDescriptorMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Customer/Card/CustomerDescriptorMenu.vue b/src/pages/Customer/Card/CustomerDescriptorMenu.vue index 89b10a4fe..178bba7db 100644 --- a/src/pages/Customer/Card/CustomerDescriptorMenu.vue +++ b/src/pages/Customer/Card/CustomerDescriptorMenu.vue @@ -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, }, });