diff options
Diffstat (limited to 'web/html/xui/form/protocol/shadowsocks.html')
| -rw-r--r-- | web/html/xui/form/protocol/shadowsocks.html | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/web/html/xui/form/protocol/shadowsocks.html b/web/html/xui/form/protocol/shadowsocks.html index c739ae10..35912d61 100644 --- a/web/html/xui/form/protocol/shadowsocks.html +++ b/web/html/xui/form/protocol/shadowsocks.html @@ -18,10 +18,28 @@ <a-icon @click="client.password = RandomUtil.randomShadowsocksPassword()" type="sync"> </a-icon> <a-input v-model.trim="client.password" style="width: 250px;"></a-input> </a-form-item> - <a-form-item label="Subscription" v-if="client.email"> + <a-form-item v-if="client.email"> + <span slot="label"> + Subscription + <a-tooltip> + <template slot="title"> + <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span> + </template> + <a-icon type="question-circle" theme="filled"></a-icon> + </a-tooltip> + </span> <a-input v-model.trim="client.subId"></a-input> - </a-form-item> - <a-form-item label="Telegram Username" v-if="client.email"> + </a-form-item> + <a-form-item v-if="client.email"> + <span slot="label"> + Telegram ID + <a-tooltip> + <template slot="title"> + <span>{{ i18n "pages.inbounds.telegramDesc" }}</span> + </template> + <a-icon type="question-circle" theme="filled"></a-icon> + </a-tooltip> + </span> <a-input v-model.trim="client.tgId"></a-input> </a-form-item> <a-form-item> |
