From 7f4978759bd5db086b3a01d70b06231a3241daed Mon Sep 17 00:00:00 2001 From: jedarden Date: Thu, 9 Jul 2026 00:21:04 -0400 Subject: [PATCH] fix(dashboard): restore trailing comma after manualFrameRateCap (bf-1usoj) The inline comment on app.js:63 consumed the trailing comma in the state object literal, so the parser reached systemHealth on the next line as a bare identifier -> "Unexpected identifier 'systemHealth'" pageerror. Add the comma back; key/value unchanged. Co-Authored-By: Claude --- dashboard/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/js/app.js b/dashboard/js/app.js index 022c47f..421dd1e 100644 --- a/dashboard/js/app.js +++ b/dashboard/js/app.js @@ -60,7 +60,7 @@ lastFrameTime: 0, // Time of last rendered frame fpsHistory: [], // Recent FPS samples for detecting struggling devices strugglingDevice: false, // Auto-detected low performance flag - manualFrameRateCap: null // User-specified frame rate cap (null = auto-detect) + manualFrameRateCap: null, // User-specified frame rate cap (null = auto-detect) // System health tracking systemHealth: 0, worstLinkID: null,