From 72e569d67f6c0d08afd1f8965850fa3cd7383c4a Mon Sep 17 00:00:00 2001 From: Pascal Date: Mon, 20 Jan 2025 15:39:45 +0100 Subject: [PATCH] button_not_working --- src/pages/chat/chat.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/pages/chat/chat.ts b/src/pages/chat/chat.ts index d4884eb..2622772 100755 --- a/src/pages/chat/chat.ts +++ b/src/pages/chat/chat.ts @@ -672,6 +672,20 @@ class ChatElement extends HTMLElement { } groupList.innerHTML = ''; + + /*
+ + +
*/ + + const tabContent = document.createElement('div'); + tabContent.className = 'tabs'; + tabContent.innerHTML = ` + + + `; + groupList.appendChild(tabContent); + for (const process of processResult) { //console.log('🎯 Processing process:', process); const li = document.createElement('li');