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/client.html')
-rw-r--r--web/html/xui/form/client.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html
index 63b949af..30bf6566 100644
--- a/web/html/xui/form/client.html
+++ b/web/html/xui/form/client.html
@@ -43,30 +43,30 @@
</td>
</tr>
<tr v-if="client.email && app.subSettings.enable">
- <td>Subscription</td>
+ <td>Subscription <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon></td>
<td>
<a-tooltip>
<template slot="title">
<span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
</template>
- <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"> </a-icon>
</a-tooltip>
<a-form-item>
- <a-input v-model.trim="client.subId" style="width: 150px;"></a-input>
+ <a-input v-model.trim="client.subId" style="width: 250px;"></a-input>
</a-form-item>
</td>
</tr>
<tr v-if="client.email && app.tgBotEnable">
- <td>Telegram ID</td>
- <td>
+ <td>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>
+ </td>
+ <td>
<a-form-item>
- <a-input v-model.trim="client.tgId"></a-input>
+ <a-input v-model.trim="client.tgId" style="width: 250px"></a-input>
</a-form-item>
</td>
</tr>