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:
-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 ]]