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
path: root/web/html
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2024-02-22 22:19:18 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2024-02-22 22:19:18 +0300
commitfe7a5f1813c0c0fb741c4c516a9e317a57205c03 (patch)
tree5cd67fc212ccfc6d2ee7dc04aa80bd620651b352 /web/html
parent3cd1b59a6c0116446c9a6085d482ea9ba4c3e4ea (diff)
better view
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/xray.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/xui/xray.html b/web/html/xui/xray.html
index efe4e5ca..2ddba224 100644
--- a/web/html/xui/xray.html
+++ b/web/html/xui/xray.html
@@ -465,7 +465,7 @@
</a-tab-pane>
<a-tab-pane key="tpl-4" tab='{{ i18n "pages.xray.outbound.reverse"}}' style="padding-top: 20px;" force-render="true">
<a-button type="primary" icon="plus" @click="addReverse()" style="margin-bottom: 10px;">{{ i18n "pages.xray.outbound.addReverse" }}</a-button>
- <a-table :columns="reverseColumns" bordered
+ <a-table :columns="reverseColumns" bordered v-if="reverseData.length>0"
:row-key="r => r.key"
:data-source="reverseData"
:scroll="isMobile ? {} : { x: 200 }"
@@ -491,11 +491,11 @@
</template>
</a-table>
</a-tab-pane>
- <a-tab-pane key="tpl-balancers" tab='{{ i18n "pages.xray.Balancers"}}' style="padding-top: 20px;" force-render="true">
- <a-alert type="warning" style="margin-bottom: 10px; width: fit-content"
+ <a-tab-pane key="tpl-5" tab='{{ i18n "pages.xray.Balancers"}}' style="padding-top: 20px;" force-render="true">
+ <a-alert type="warning" style="margin-bottom: 10px; width: fit-content"
message='{{ i18n "pages.xray.balancer.balancerDesc" }}' show-icon></a-alert>
<a-button type="primary" icon="plus" @click="addBalancer()" style="margin-bottom: 10px;">{{ i18n "pages.xray.balancer.addBalancer"}}</a-button>
- <a-table :columns="balancerColumns" bordered
+ <a-table :columns="balancerColumns" bordered v-if="balancersData.length>0"
:row-key="r => r.key"
:data-source="balancersData"
:scroll="isMobile ? {} : { x: 200 }"