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-10 17:06:42 +0300
committerAlireza Ahmadi <alireza7@gmail.com>2023-12-10 17:17:10 +0300
commite1da2a2eedd0436296fba7e5a214ed9a347a1ef3 (patch)
treedace9ffcd6c046df112722aa4d1e493e70ee42f6 /web/html/xui/form/protocol/vless.html
parent848e549c0cdff9b21991e9bd2f6534f59b7a6b5b (diff)
small fixes #1300
Diffstat (limited to 'web/html/xui/form/protocol/vless.html')
-rw-r--r--web/html/xui/form/protocol/vless.html58
1 files changed, 43 insertions, 15 deletions
diff --git a/web/html/xui/form/protocol/vless.html b/web/html/xui/form/protocol/vless.html
index 261e6616..c3037935 100644
--- a/web/html/xui/form/protocol/vless.html
+++ b/web/html/xui/form/protocol/vless.html
@@ -40,21 +40,49 @@
<a-icon type="delete" @click="() => inbound.settings.delFallback(index)"
style="color: rgb(255, 77, 79);cursor: pointer;"/>
</a-divider>
- <a-form-item label="Name">
- <a-input v-model="fallback.name"></a-input>
- </a-form-item>
- <a-form-item label="Alpn">
- <a-input v-model="fallback.alpn"></a-input>
- </a-form-item>
- <a-form-item label="Path">
- <a-input v-model="fallback.path"></a-input>
- </a-form-item>
- <a-form-item label="Dest">
- <a-input v-model="fallback.dest"></a-input>
- </a-form-item>
- <a-form-item label="xVer">
- <a-input-number v-model="fallback.xver"></a-input-number>
- </a-form-item>
+ <table width="100%">
+ <tr>
+ <td style="width: 20%;">Name</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="fallback.name" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>Alpn</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="fallback.alpn" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>Path</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="fallback.path" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>Dest</td>
+ <td>
+ <a-form-item>
+ <a-input v-model="fallback.dest" style="width: 250px"></a-input>
+ </a-form-item>
+ </td>
+ </tr>
+ <tr>
+ <td>xVer</td>
+ <td>
+ <a-form-item>
+ <a-input-number v-model="fallback.xver" :min="0" :max="2"></a-input-number>
+ </a-form-item>
+ </td>
+ </tr>
+ </table>
</a-form>
+ <a-divider style="margin:0;"></a-divider>
</template>
{{end}}