luci-mod-system: fix reference to undefined variable
Fixes: 24550446c
("luci-mod-system: fix parsing SSH pubkeys with options")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
24550446ca
commit
b9c806b064
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ var SSHPubkeyDecoder = L.Class.singleton({
|
|||
function renderKeyItem(pubkey) {
|
||||
return E('div', {
|
||||
class: 'item',
|
||||
click: isReadonlyView ? null : removeKey,
|
||||
click: removeKey,
|
||||
'data-key': pubkey.src
|
||||
}, [
|
||||
E('strong', pubkey.comment || _('Unnamed key')), E('br'),
|
||||
|
|
Loading…
Reference in a new issue