From: Jo-Philipp Wich Date: Sun, 21 Jul 2019 07:42:15 +0000 (+0200) Subject: luci-mod-network: fix typo in wifi scan JS code X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=140456f07ae950ab5913e38720fded318fdc95e2;p=project%2Fluci.git luci-mod-network: fix typo in wifi scan JS code Fixes: 8dd2df29c ("luci-mod-network: improve wifi scan status reporting") Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js index af926ab4a2..f30e47ec7c 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js @@ -144,7 +144,7 @@ function scan() { ]); }); - cbi_update_table(tbl, bss, E('em' {}, _('No networks in range'))); + cbi_update_table(tbl, bss, E('em', {}, _('No networks in range'))); } else { cbi_update_table(tbl, [], E('em', { class: 'spinning' }, _('No scan results available yet...')));