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:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-12-10 15:50:34 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-12-10 15:59:30 +0300
commit1309504ff6ac7b4b0835aa0f5c905dc4c22b94bf (patch)
tree529dec58b72adb6d9788d68efd35f4832d066aae /web/html/xui/form
parentbd3ad7b0c2a22dcb0cccf4ff621a08914137c9db (diff)
fix
Diffstat (limited to 'web/html/xui/form')
-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>