From cf84a76fb2faab457e9388d2345ca0714e39a0f2 Mon Sep 17 00:00:00 2001 From: ChuckBuilds Date: Thu, 16 Jul 2026 19:59:06 -0400 Subject: [PATCH] fix(web): raise display Rows field max from 64 to 128 Cols already allowed up to 128; Rows was capped at 64, which rejects valid larger panel configurations (e.g. 128-row tile chains). No server-side schema enforces a rows max, so this was purely an overly-strict HTML input attribute. --- web_interface/templates/v3/partials/display.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_interface/templates/v3/partials/display.html b/web_interface/templates/v3/partials/display.html index 7615c522..b577010f 100644 --- a/web_interface/templates/v3/partials/display.html +++ b/web_interface/templates/v3/partials/display.html @@ -47,7 +47,7 @@ name="rows" value="{{ main_config.display.hardware.rows or 32 }}" min="1" - max="64" + max="128" class="form-control">