diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-04-10 00:25:47 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-04-10 00:25:47 +0300 |
| commit | de26dbbc96de3c09fb3dda3086f125f591a1cbd6 (patch) | |
| tree | e61feca2eb5e76f1bb11132f3332379791fe0ae6 /web/html/xui/form/client.html | |
| parent | e1da43053d23c995bcd6e7267cb20042398cd64f (diff) | |
fixed
Diffstat (limited to 'web/html/xui/form/client.html')
| -rw-r--r-- | web/html/xui/form/client.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html index 3f91c8e8..1de05ac9 100644 --- a/web/html/xui/form/client.html +++ b/web/html/xui/form/client.html @@ -27,6 +27,12 @@ <a-form-item label='{{ i18n "additional" }} ID' v-if="inbound.protocol === Protocols.VMESS"> <a-input type="number" v-model.number="client.alterId" style="width: 70px;"></a-input> </a-form-item> + <a-form-item label="Subscription" v-if="client.email"> + <a-input v-model.trim="client.subId"></a-input> + </a-form-item> + <a-form-item label="Telegram Username" v-if="client.email"> + <a-input v-model.trim="client.tgId"></a-input> + </a-form-item> <a-form-item> <span slot="label"> <span>{{ i18n "pages.inbounds.IPLimit" }}</span> @@ -62,12 +68,6 @@ </a-textarea> </a-form> </a-form-item> - <a-form-item label="Subscription" v-if="client.email"> - <a-input v-model.trim="client.subId"></a-input> - </a-form-item> - <a-form-item label="Telegram Username" v-if="client.email"> - <a-input v-model.trim="client.tgId"></a-input> - </a-form-item> <a-form-item v-if="inbound.XTLS" label="Flow"> <a-select v-model="client.flow" style="width: 150px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''"> <a-select-option value="">{{ i18n "none" }}</a-select-option> |
