Skip to content

Commit

Permalink
luci-mod-dashboard: code spelling
Browse files Browse the repository at this point in the history
Closes openwrt#7477

Signed-off-by: Paul Donald <[email protected]>
  • Loading branch information
systemcrash committed Dec 16, 2024
1 parent e23f606 commit dd2c7f9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]),
]),
])
]));
Expand Down

0 comments on commit dd2c7f9

Please sign in to comment.