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');