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:
authorAlireza Ahmadi <alireza7@gmail.com>2023-12-06 00:58:08 +0300
committerAlireza Ahmadi <alireza7@gmail.com>2023-12-06 00:58:08 +0300
commit1bbef6d612e4db7749497fef6b76611831d75494 (patch)
tree9d6c1b55a337ea22973c5a1c3b124446473703bb /web/html/xui/form/outbound.html
parentf7e439b9307357ebb53cc909d164cb4dab23dfc8 (diff)
small theme fixes #1286
Diffstat (limited to 'web/html/xui/form/outbound.html')
-rw-r--r--web/html/xui/form/outbound.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index a8b58ba0..cd6b5f28 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -8,8 +8,8 @@
<a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
</a-select>
</a-form-item>
- <a-form-item label='{{ i18n "pages.xray.outbound.tag" }}'>
- <a-input v-model.trim="outbound.tag" style="width: 250px" @change="outModal.check()" :style="outModal.duplicateTag? 'border-color: red;' : ''"></a-input>
+ <a-form-item label='{{ i18n "pages.xray.outbound.tag" }}' has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
+ <a-input v-model.trim="outbound.tag" style="width: 250px" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
</a-form-item>
<!-- freedom settings-->
<template v-if="outbound.protocol === Protocols.Freedom">
@@ -71,7 +71,7 @@
<a-input v-model.trim="outbound.settings.address" style="width: 250px"></a-input>
</a-form-item>
<a-form-item label='{{ i18n "pages.inbounds.port" }}'>
- <a-input-number v-model.number="outbound.settings.port"></a-input-number>
+ <a-input-number v-model.number="outbound.settings.port" :min="1" :max="65532"></a-input-number>
</a-form-item>
</template>