summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ledtrig-usbport/htdocs
diff options
context:
space:
mode:
authorThomas Kupper <thomas.kupper@gmail.com>2021-08-29 12:18:44 +0200
committerThomas Kupper <thomas.kupper@gmail.com>2021-08-29 12:23:08 +0200
commitc5dbb51c4d434d47c7de41ec7ef0276e307a6977 (patch)
tree37a134bf6ac6b8d3a543601437a5cbb74371f7f8 /applications/luci-app-ledtrig-usbport/htdocs
parent09e657e7894250691284946bba05ae0a08e4c5dd (diff)
luci-app-ledtrig-usbport: fix allow multiple selection
The kernel module `kmod-usb-ledtrig-usbport` allows for multiple selections of USB ports to trigger a single LED. See https://www.kernel.org/doc/html/latest/leds/ledtrig-usbport.html This simplest of fixes allows for selection one or more USB ports to trigger a LED. The ASUS RT-AC88U router which is getting ported to OpenWrt by arinc9 has got an USB 3.0 port at the front which will use different internal USB ports, depending on if you connect an USB 2.0 device or an USB 3.0 device. This fix/patch was tested on the mentioned router. Signed-off-by: Thomas Kupper <thomas.kupper@gmail.com>
Diffstat (limited to 'applications/luci-app-ledtrig-usbport/htdocs')
-rw-r--r--applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js b/applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js
index 602b597afc..6f31f0bb13 100644
--- a/applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js
+++ b/applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js
@@ -16,7 +16,7 @@ return baseclass.extend({
addFormOptions(s){
var o;
- o = s.option(form.Value, 'port', _('USB Ports'));
+ o = s.option(form.MultiValue, 'port', _('USB Ports'));
o.depends('trigger', 'usbport');
o.rmempty = true;
o.modalonly = true;