From db30bdd7df93c56ea7f6a2258dfd1296bdc26545 Mon Sep 17 00:00:00 2001 From: Aldino Kemal Date: Wed, 23 Nov 2022 14:33:00 +0700 Subject: [PATCH] fix: update UI --- src/views/index.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/views/index.html b/src/views/index.html index 69f4566..00b5cc6 100644 --- a/src/views/index.html +++ b/src/views/index.html @@ -546,7 +546,7 @@
- profile picture + profile picture
@@ -993,12 +993,11 @@ }, methods: { sendContactModal() { - this.contact_type = - $('#modalSendContact').modal({ - onApprove: function () { - return false; - } - }).modal('show'); + $('#modalSendContact').modal({ + onApprove: function () { + return false; + } + }).modal('show'); }, async sendContactProcess() { try { @@ -1035,7 +1034,7 @@ this.contact_phone = ''; this.contact_card_name = ''; this.contact_card_phone = ''; - this.message_type = 'user'; + this.contact_type = 'user'; }, } } @@ -1219,6 +1218,7 @@ avatarReset() { this.avatar_phone = ''; this.avatar_image = null; + this.avatar_type = 'user'; } } } @@ -1280,6 +1280,7 @@ this.info_name = null; this.info_status = null; this.info_devices = []; + this.info_type = 'user'; } } }