From 17a29690ee72352c529ffa1404885e8c18134e82 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Mon, 16 Mar 2026 22:55:33 +0100 Subject: [PATCH] luci-mod-system: add LED interval parameter As documented https://openwrt.org/docs/guide-user/base-system/led_configuration Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/system/leds.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js index 98e30d6e05..f8e36d28aa 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js @@ -125,6 +125,9 @@ return view.extend({ } }; + o = s.option(form.Value, 'interval', _('Interval'), _('milliseconds')); + o.placeholder = '50'; + return m.render(); } });