MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / showSessionDiagnosticPanel

Function showSessionDiagnosticPanel

static/js/payment.js:178–184  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

176}
177
178function showSessionDiagnosticPanel(text) {
179 const panel = document.getElementById("session-diagnostic-panel");
180 const pre = document.getElementById("session-diagnostic-text");
181 if (!panel || !pre) return;
182 pre.textContent = String(text || "");
183 panel.classList.add("show");
184}
185
186function clearSessionDiagnosticPanel() {
187 const panel = document.getElementById("session-diagnostic-panel");

Callers 2

runSessionDiagnosticFunction · 0.85
runSessionBootstrapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected