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-05-13 12:54:44 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-05-13 12:54:44 +0300
commit9a89d7bfab1d7d3597f0c54176fc91e498fad5bc (patch)
tree0fbc80696d5c30b8074c43a24ffe3a2d8479c2d6 /web/html/xui
parentedd6b22109accd41ee664f0ee988651ba31bb098 (diff)
spin only in reload time
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html/xui')
-rw-r--r--web/html/xui/inbounds.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html
index a80fe79a..41942b74 100644
--- a/web/html/xui/inbounds.html
+++ b/web/html/xui/inbounds.html
@@ -343,7 +343,9 @@
return;
}
this.setInbounds(msg.obj);
- this.refreshing = false;
+ setTimeout(() => {
+ this.refreshing = false;
+ }, 500);
},
async getDefaultSettings() {
const msg = await HttpUtil.post('/panel/setting/defaultSettings');