From 4d3a0d1553a6ae4306de2636d0aff64933417ae4 Mon Sep 17 00:00:00 2001 From: QuickMythril Date: Mon, 11 Mar 2024 00:42:58 -0400 Subject: [PATCH] Show ID in Q-Chat group list --- plugins/plugins/core/components/ChatHead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugins/core/components/ChatHead.js b/plugins/plugins/core/components/ChatHead.js index 32a33416..abe7e2af 100644 --- a/plugins/plugins/core/components/ChatHead.js +++ b/plugins/plugins/core/components/ChatHead.js @@ -169,7 +169,7 @@ class ChatHead extends LitElement {
${this.chatInfo.groupName ? this.chatInfo.groupName : this.chatInfo.name !== undefined ? this.chatInfo.name : this.chatInfo.address.substr(0, 15)} ${this.chatInfo.groupId !== undefined ? 'lock_open' : 'lock'}
-
+
${this.chatInfo.groupId !== undefined ? 'id: ' + this.chatInfo.groupId : ''}