From: Paul Donald Date: Mon, 16 Mar 2026 21:55:33 +0000 (+0100) Subject: luci-mod-system: add LED interval parameter X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=17a29690ee72352c529ffa1404885e8c18134e82;p=openwrt-luci.git luci-mod-system: add LED interval parameter As documented https://openwrt.org/docs/guide-user/base-system/led_configuration Signed-off-by: Paul Donald --- 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(); } });