diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-10-11 23:52:40 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-10-11 23:52:40 +0200 |
commit | 4b5da809e03b2321d8362a289aa1b4979f8e8a71 (patch) | |
tree | a53cb0d1bec59c406779b0d27eb747d485c137c1 /modules/luci-mod-network/htdocs | |
parent | 5ac9fd7b3b593b86dc540c9e9d9e5ec725f8cff8 (diff) |
luci-mod-network: diagnostics: remove leftover attribute
There is no `type` attribute for `select` elements.
Fixes: 5ac9fd7b3b ("luci-mod-network: diagnostics: remove arp-scan install placeholder")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-network/htdocs')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js index 5855ee96af..f436118cf9 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js @@ -141,8 +141,7 @@ return view.extend({ has_arpscan ? E('td', { 'class': 'td left' }, [ E('select', { - 'style': 'margin:5px 0', - 'type': 'text' + 'style': 'margin:5px 0' }, devices.map(function(device) { if (!device.isUp()) return E([]); |