From: Paul Donald Date: Mon, 16 Dec 2024 20:52:20 +0000 (+0100) Subject: luci-mod-dashboard: code spelling X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dd2c7f90b85686f7e4db3304a1017a55cd74c5ef;p=project%2Fluci.git luci-mod-dashboard: code spelling Closes #7477 Signed-off-by: Paul Donald --- diff --git a/modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js b/modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js index 27ecc0f7bf..1e9d5a7a47 100644 --- a/modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js +++ b/modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js @@ -46,25 +46,25 @@ return baseclass.extend({ ])); for(var idx in this.params.lan.devices) { - var deivce = this.params.lan.devices[idx]; + var device = this.params.lan.devices[idx]; container_deviceslist.appendChild(E('tr', { 'class': 'tr cbi-rowstyle-1'}, [ E('td', { 'class': 'td device-info'}, [ E('p', {}, [ - E('span', { 'class': 'd-inline-block'}, [ deivce.hostname ]), + E('span', { 'class': 'd-inline-block'}, [ device.hostname ]), ]), ]), E('td', { 'class': 'td device-info'}, [ E('p', {}, [ - E('span', { 'class': 'd-inline-block'}, [ deivce.ipv4 ]), + E('span', { 'class': 'd-inline-block'}, [ device.ipv4 ]), ]), ]), E('td', { 'class': 'td device-info'}, [ E('p', {}, [ - E('span', { 'class': 'd-inline-block'}, [ deivce.macaddr ]), + E('span', { 'class': 'd-inline-block'}, [ device.macaddr ]), ]), ]) ]));