luci-mod-status: fix stray "null" in wifi assoclist status view
Fixes: #3272 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
8c9ee394b3
commit
861ec9e821
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ return L.Class.extend({
|
|||
E('div', { 'class': 'th' }, _('Host')),
|
||||
E('div', { 'class': 'th nowrap' }, '%s / %s'.format(_('Signal'), _('Noise'))),
|
||||
E('div', { 'class': 'th nowrap' }, '%s / %s'.format(_('RX Rate'), _('TX Rate'))),
|
||||
supports_deauth ? E('div', { 'class': 'th nowrap right' }, _('Disconnect')) : null
|
||||
supports_deauth ? E('div', { 'class': 'th nowrap right' }, _('Disconnect')) : E([])
|
||||
])
|
||||
]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue