mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-08-01 08:48:05 +00:00
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.
This commit is contained in:
@@ -47,7 +47,7 @@
|
|||||||
name="rows"
|
name="rows"
|
||||||
value="{{ main_config.display.hardware.rows or 32 }}"
|
value="{{ main_config.display.hardware.rows or 32 }}"
|
||||||
min="1"
|
min="1"
|
||||||
max="64"
|
max="128"
|
||||||
class="form-control">
|
class="form-control">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user