summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol
diff options
context:
space:
mode:
authorPaul Donald <newtwen@gmail.com>2023-12-04 22:00:35 +0100
committerGitHub <noreply@github.com>2023-12-04 22:00:35 +0100
commita5786b5f2f68596b2ea8441fc8ad8ad7cf2ce2a9 (patch)
treea64f2c4bc4ed86e5e601bc6d66150be352ff172d /protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol
parentc2f679962ddf7f6545adacfcf3068370825c43a9 (diff)
luci-proto-wireguard: Remove confirmation dialogue to generate keys (#6697)
Quality of life improvements. Reduce click amounts. LuCI batches all changes for user-review anyway. Tested on 23.05.0 Signed-off-by: Paul Donald <newtwen@gmail.com>
Diffstat (limited to 'protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol')
-rw-r--r--protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js6
1 files changed, 0 insertions, 6 deletions
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 e06f07895f..387ada9003 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
@@ -97,9 +97,6 @@ var cbiKeyPairGenerate = form.DummyValue.extend({
pub = this.section.getUIElement(section_id, 'public_key'),
map = this.map;
- if ((prv.getValue() || pub.getValue()) && !confirm(_('Do you want to replace the current keys?')))
- return;
-
return generateKey().then(function(keypair) {
prv.setValue(keypair.priv);
pub.setValue(keypair.pub);
@@ -610,9 +607,6 @@ return network.registerProtocol('wireguard', {
var psk = this.section.getUIElement(section_id, 'preshared_key'),
map = this.map;
- if (psk.getValue() && !confirm(_('Do you want to replace the current PSK?')))
- return;
-
return generatePsk().then(function(key) {
psk.setValue(key);
map.save(null, true);