From bde224c34790c41d9e82d8ae7e59d3a9e60a3861 Mon Sep 17 00:00:00 2001 From: Kostya Date: Tue, 30 Jan 2024 23:40:03 +0300 Subject: [PATCH] added comment for save icon --- luckydiamond/src/components/ChatComponent.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/luckydiamond/src/components/ChatComponent.vue b/luckydiamond/src/components/ChatComponent.vue index 28d3466..ad7592f 100644 --- a/luckydiamond/src/components/ChatComponent.vue +++ b/luckydiamond/src/components/ChatComponent.vue @@ -81,10 +81,12 @@ export default { icon: imageUrl, }; - if (MsgUser.username === '🛠️ System') { + if (MsgUser.username === 'System') { MsgUser.icon = 'https://avatar.spworlds.ru/face/55/CONSOLE' } + + // 🛠️ - icon this.array.push(MsgUser); this.ScrollToBottom(); @@ -106,7 +108,7 @@ export default { icon: imageUrl, }; - if (MsgUser.username === '🛠️ System') { + if (MsgUser.username === 'System') { MsgUser.icon = 'https://avatar.spworlds.ru/face/55/CONSOLE' }