diff options
| author | Ali Rahimi <alirahimi818@gmail.com> | 2024-01-24 00:53:15 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-24 00:53:15 +0300 |
| commit | 251ceeedbad52fc05c84c431a3d982d558a59d7d (patch) | |
| tree | e30abb3a9dda1b050782af459ddf16bb36a2d7dd | |
| parent | c1422be269bcfe4e5fcdd2095224ac55e50e2d8c (diff) | |
bug fixed (import inbounds) (#1670)
* add single client bug fixed
* bug fixed
| -rw-r--r-- | web/html/xui/inbounds.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html index faff7a0f..2707fc42 100644 --- a/web/html/xui/inbounds.html +++ b/web/html/xui/inbounds.html @@ -1243,7 +1243,7 @@ value: '', okText: '{{ i18n "pages.inbounds.import" }}', confirm: async (dbInboundText) => { - await this.submit('/panel/inbound/import', {data: dbInboundText}, promptModal); + await this.submit('/panel/inbound/import', {data: dbInboundText}); promptModal.close(); }, }); |
