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:
Diffstat (limited to 'web/html/xui/form/protocol/vless.html')
-rw-r--r--web/html/xui/form/protocol/vless.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/web/html/xui/form/protocol/vless.html b/web/html/xui/form/protocol/vless.html
index f661a839..12729eff 100644
--- a/web/html/xui/form/protocol/vless.html
+++ b/web/html/xui/form/protocol/vless.html
@@ -108,10 +108,14 @@
<a-collapse-panel :header="'{{ i18n "pages.client.clientCount"}} : ' + inbound.settings.vlesses.length">
<table width="100%">
<tr class="client-table-header">
- <th v-for="col in Object.keys(inbound.settings.vlesses[0]).slice(0, 3)">[[ col ]]</th>
+ <th>{{ i18n "pages.inbounds.email" }}</th>
+ <th>Flow</th>
+ <th>ID</th>
</tr>
<tr v-for="(client, index) in inbound.settings.vlesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''">
- <td v-for="col in Object.values(client).slice(0, 3)">[[ col ]]</td>
+ <td>[[ client.email ]]</td>
+ <td>[[ client.flow ]]</td>
+ <td>[[ client.id ]]</td>
</tr>
</table>
</a-collapse-panel>