diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2020-10-25 14:40:49 +0100 |
---|---|---|
committer | Toke Høiland-Jørgensen <toke@toke.dk> | 2020-10-25 14:46:36 +0100 |
commit | 5a6037a258558d7c61422ee966f25a950f99c56e (patch) | |
tree | 479b765c50247950b6e093b52c04a9bce955b8e2 /applications | |
parent | c80fcd23753a02a24de676c612492b6d55b747e1 (diff) |
luci-app-sqm: fix missing interface in selection
Show device instead of interface in interface selection.
Fixes: #4539
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js index c60e00b40..a9d99d5f6 100644 --- a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -68,7 +68,7 @@ return view.extend({ return uci.set("sqm", section, "enabled", value); }, this); - o = s.taboption("tab_basic", widgets.NetworkSelect, "interface", _("Interface name")); + o = s.taboption("tab_basic", widgets.DeviceSelect, "interface", _("Interface name")); o.rmempty = false; o = s.taboption("tab_basic", form.Value, "download", _("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:")); |