From 071fc1bc92980454b6701d9394711b9d758f332a Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Mon, 15 Jul 2024 15:15:29 -0400 Subject: 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 --- .../htdocs/luci-static/resources/protocol/wireguard.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol') 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'; -- cgit v1.2.3