From c6d0822793fc42ddd5a179af291aaf5151f669fb Mon Sep 17 00:00:00 2001 From: Richard Yu Date: Mon, 28 Oct 2019 14:57:19 +0800 Subject: [PATCH] luci-mod-system: add missing speed_mask option in leds.js Signed-off-by: Richard Yu --- .../htdocs/luci-static/resources/view/system/leds.js | 5 +++++ 1 file changed, 5 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 139db8797c..b571032efc 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 @@ -148,6 +148,11 @@ return L.view.extend({ o.depends('trigger', 'switch0'); o.depends('trigger', 'switch1'); + o = s.option(form.Value, 'speed_mask', _('Switch Speed Mask')); + o.modalonly = true; + o.depends('trigger', 'switch0'); + o.depends('trigger', 'switch1'); + return m.render(); } }); -- 2.30.2