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>2025-08-04 01:57:06 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-08-04 01:57:06 +0300
commit0d595f56e4e320fbe529be647acf273025af3537 (patch)
treee0b0bb2b0efc0cb692b80c77eb617a390bd468da /web/html/form/outbound.html
parenta4c4f9efb3e896c8634b8746aadfe4b1446242e2 (diff)
change a-input to a-textarea
Diffstat (limited to 'web/html/form/outbound.html')
-rw-r--r--web/html/form/outbound.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/form/outbound.html b/web/html/form/outbound.html
index 4b15b22c..eed7316d 100644
--- a/web/html/form/outbound.html
+++ b/web/html/form/outbound.html
@@ -444,16 +444,16 @@
</a-select>
</a-form-item>
<a-form-item label="Short ID">
- <a-input v-model.trim="outbound.stream.reality.shortId" :style="{ width: '250px' }"></a-input>
+ <a-input v-model.trim="outbound.stream.reality.shortId"></a-input>
</a-form-item>
<a-form-item label="SpiderX">
- <a-input v-model.trim="outbound.stream.reality.spiderX" :style="{ width: '250px' }"></a-input>
+ <a-input v-model.trim="outbound.stream.reality.spiderX"></a-input>
</a-form-item>
<a-form-item label="Public Key">
- <a-input v-model.trim="outbound.stream.reality.publicKey"></a-input>
+ <a-textarea v-model.trim="outbound.stream.reality.publicKey"></a-textarea>
</a-form-item>
<a-form-item label="mldsa65 Verify">
- <a-input v-model.trim="outbound.stream.reality.mldsa65Verify"></a-input>
+ <a-textarea v-model.trim="outbound.stream.reality.mldsa65Verify"></a-textarea>
</a-form-item>
</template>
</template>