diff --git a/public/architecture.html b/public/architecture.html index 8fe7a01c..8a58360f 100644 --- a/public/architecture.html +++ b/public/architecture.html @@ -549,7 +549,7 @@ - + diff --git a/public/js/components/pressure-chart.js b/public/js/components/pressure-chart.js index a36ff144..cdf8cde1 100644 --- a/public/js/components/pressure-chart.js +++ b/public/js/components/pressure-chart.js @@ -35,6 +35,7 @@ class PressureChart { } render() { + console.log('[PressureChart] render() called, container:', this.container); this.container.innerHTML = `
@@ -102,6 +103,10 @@ class PressureChart { resetBtn: document.getElementById('pressure-reset-btn') }; + // Verify innerHTML was set + console.log('[PressureChart] innerHTML length:', this.container.innerHTML.length); + console.log('[PressureChart] First 100 chars:', this.container.innerHTML.substring(0, 100)); + // Verify elements were found console.log('[PressureChart] Elements found:', { gaugeFill: !!this.elements.gaugeFill,