From: Paul Donald Date: Fri, 25 Oct 2024 20:33:33 +0000 (+0200) Subject: luci-proto-wireguard: disable peers from the tab X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=075eb4f9a7ccaf5b24741f9f937bf221b392b3ad;p=project%2Fluci.git luci-proto-wireguard: disable peers from the tab It's clumsy to enable/disable peers from the modal, save some clicks Signed-off-by: Bryan Roessler (cherry picked from commit 071fc1bc92980454b6701d9394711b9d758f332a) --- diff --git a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js index 05e0e275c7..aeccff4150 100644 --- a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js +++ b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js @@ -496,9 +496,10 @@ return network.registerProtocol('wireguard', { return E('em', _('No peers defined yet.')); }; - o = ss.option(form.Flag, 'disabled', _('Peer disabled'), _('Enable / Disable peer. Restart wireguard interface to apply changes.')); - o.modalonly = true; + o = ss.option(form.Flag, 'disabled', _('Disabled'), _('Enable / Disable peer. Restart wireguard interface to apply changes.')); + o.editable = true; o.optional = true; + o.width = '5%'; o = ss.option(form.Value, 'description', _('Description'), _('Optional. Description of peer.')); o.placeholder = 'My Peer';