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 <mc.sanaei@gmail.com>2023-02-23 12:58:08 +0300
committerMHSanaei <mc.sanaei@gmail.com>2023-02-23 12:58:08 +0300
commitef3362464eebc5b7818fb3fdb65ad7652ac20712 (patch)
tree23527f2712f8c64583197d6c54ffb7b1d22883b1 /web/html
parentb2d8ba6e1527120b94b1de1960f3c4ce041a1afb (diff)
Update inbounds_client_row.html
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/inbounds_client_row.html15
1 files changed, 12 insertions, 3 deletions
diff --git a/web/html/xui/inbounds_client_row.html b/web/html/xui/inbounds_client_row.html
index 0fe707e4..76f2a799 100644
--- a/web/html/xui/inbounds_client_row.html
+++ b/web/html/xui/inbounds_client_row.html
@@ -1,8 +1,17 @@
{{define "client_row"}}
<template slot="actions" slot-scope="text, client, index">
-<a-icon v-if="record.hasLink()" style="font-size: 26px" type="qrcode" @click="showQrcode(record,index);"></a-icon>&nbsp;&nbsp;
-<a-icon v-if="client.email != ''" style="font-size: 26px" type="retweet" @click="resetClientTraffic(client,record,$event)"></a-icon>&nbsp;&nbsp;
-<a-icon type="info-circle" style="font-size: 26px" @click="showInfo(record,index);"></a-icon>
+ <a-tooltip>
+ <template slot="title">{{ i18n "qrCode" }}</template>
+ <a-icon style="font-size: 24px;" type="qrcode" v-if="record.hasLink()" @click="showQrcode(record,index);"></a-icon>
+ </a-tooltip>
+ <a-tooltip>
+ <template slot="title">{{ i18n "info" }}</template>
+ <a-icon style="font-size: 24px;" type="info-circle" @click="showInfo(record,index);"></a-icon>
+ </a-tooltip>
+ <a-tooltip>
+ <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template>
+ <a-icon style="font-size: 24px;" type="retweet" @click="resetClientTraffic(client,record,$event)" v-if="client.email != ''"></a-icon>
+ </a-tooltip>
</template>
<template slot="client" slot-scope="text, client">
[[ client.email ]]