From f8a8b2fa00dcedfdeff6923ec516a7bd939e6f0d Mon Sep 17 00:00:00 2001 From: drjones Date: Sun, 23 Aug 2026 09:08:35 -0700 Subject: [PATCH] Fix JavaScript syntax error caused by duplicate ram variable declaration in app.js --- static/app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/static/app.js b/static/app.js index 815b2e6..686932a 100644 --- a/static/app.js +++ b/static/app.js @@ -136,7 +136,6 @@ function updateDashboard(data) { } // 2. System RAM & Page Cache - const ram = data.ram || {}; if (ram.total_bytes) { document.getElementById('ram-cached-gb').textContent = ram.cached_gb || '0.0'; document.getElementById('ram-total-text').textContent = `${ram.total_gb || 0} GB Total (${ram.cache_ratio_pct || 0}% in Cache)`;