Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-03-17 22:37:52 +0300
committerGitHub <noreply@github.com>2023-03-17 22:37:52 +0300
commit8c6c9ace792bdeae739ef028261eb5fd5eaafb8a (patch)
tree6c74658bdee39da7f5b5f8a5984a5ea803934e4a /web/html/xui/client_modal.html
parentd46e0e69251d0ad60adc614505bcabff99529e1e (diff)
parentf881c5347c86a885b7167b9207fa2ea8dd6f9d24 (diff)
Merge pull request #29 from MHSanaei/ClientIPs-functions
Client ips functions
Diffstat (limited to 'web/html/xui/client_modal.html')
-rw-r--r--web/html/xui/client_modal.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/client_modal.html b/web/html/xui/client_modal.html
index 17381a88..e4ee8659 100644
--- a/web/html/xui/client_modal.html
+++ b/web/html/xui/client_modal.html
@@ -120,12 +120,12 @@
event.target.value = msg.obj
}
},
- async clearDBClientIps(email,event) {
+ async clearDBClientIps(email) {
const msg = await HttpUtil.post('/xui/inbound/clearClientIps/'+ email);
if (!msg.success) {
return;
}
- event.target.value = ""
+ document.getElementById("clientIPs").value = ""
},
},
});