diff options
| -rw-r--r-- | web/html/xui/inbounds_client_row.html | 15 |
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> -<a-icon v-if="client.email != ''" style="font-size: 26px" type="retweet" @click="resetClientTraffic(client,record,$event)"></a-icon> -<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 ]] |
