mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-21 20:12:33 +03:00
fix bug
This commit is contained in:
parent
453e9fcf5d
commit
2b7a8d01c7
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ Wireguard Clients
|
||||||
const client_id = $("#_client_id").val();
|
const client_id = $("#_client_id").val();
|
||||||
const name = $("#_client_name").val();
|
const name = $("#_client_name").val();
|
||||||
const email = $("#_client_email").val();
|
const email = $("#_client_email").val();
|
||||||
const allocated_ips = $("#1").val().split(",");
|
const allocated_ips = $("#_client_allocated_ips").val().split(",");
|
||||||
const allowed_ips = $("#_client_allowed_ips").val().split(",");
|
const allowed_ips = $("#_client_allowed_ips").val().split(",");
|
||||||
const private_subnets = $("#_client_private_subnets").val().split(",");
|
const private_subnets = $("#_client_private_subnets").val().split(",");
|
||||||
let enabled = false;
|
let enabled = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue