Upload 5 modified files from chat-switchboard-v0.5.1-1.zip

This commit is contained in:
2026-02-18 21:07:57 +00:00
parent 7075538702
commit 410492a7fa
3 changed files with 26 additions and 8 deletions

View File

@@ -508,7 +508,8 @@ function switchDebugTab(tab) {
document.querySelectorAll('.debug-tab').forEach(t => t.classList.remove('active'));
document.querySelectorAll('.debug-tab-content').forEach(c => c.style.display = 'none');
document.querySelector(`.debug-tab[data-tab="${tab}"]`)?.classList.add('active');
document.getElementById(`debug${tab.charAt(0).toUpperCase() + tab.slice(1)}Tab`)?.style.display = '';
const panel = document.getElementById(`debug${tab.charAt(0).toUpperCase() + tab.slice(1)}Tab`);
if (panel) panel.style.display = '';
DebugLog.render();
}