diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-08-04 01:57:06 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-08-04 01:57:06 +0300 |
| commit | 0d595f56e4e320fbe529be647acf273025af3537 (patch) | |
| tree | e0b0bb2b0efc0cb692b80c77eb617a390bd468da | |
| parent | a4c4f9efb3e896c8634b8746aadfe4b1446242e2 (diff) | |
change a-input to a-textarea
| -rw-r--r-- | web/html/form/outbound.html | 8 | ||||
| -rw-r--r-- | web/html/form/reality_settings.html | 8 | ||||
| -rw-r--r-- | web/html/form/tls_settings.html | 4 |
3 files changed, 10 insertions, 10 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> diff --git a/web/html/form/reality_settings.html b/web/html/form/reality_settings.html index a4f460e0..feacccbe 100644 --- a/web/html/form/reality_settings.html +++ b/web/html/form/reality_settings.html @@ -36,22 +36,22 @@ type="sync"></a-icon> </a-tooltip> </template> - <a-input v-model.trim="inbound.stream.reality.shortIds"></a-input> + <a-textarea v-model.trim="inbound.stream.reality.shortIds"></a-textarea> </a-form-item> <a-form-item label='SpiderX'> <a-input v-model.trim="inbound.stream.reality.settings.spiderX"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.publicKey" }}'> - <a-input v-model="inbound.stream.reality.settings.publicKey"></a-input> + <a-textarea v-model="inbound.stream.reality.settings.publicKey"></a-textarea> </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input v-model="inbound.stream.reality.privateKey"></a-input> + <a-textarea v-model="inbound.stream.reality.privateKey"></a-textarea> </a-form-item> <a-form-item label=" "> <a-button type="primary" icon="import" @click="getNewX25519Cert">Get New Cert</a-button> </a-form-item> <a-form-item label="mldsa65 Seed"> - <a-input v-model="inbound.stream.reality.mldsa65Seed"></a-input> + <a-textarea v-model="inbound.stream.reality.mldsa65Seed"></a-textarea> </a-form-item> <a-form-item label="mldsa65 Verify"> <a-textarea v-model="inbound.stream.reality.settings.mldsa65Verify"></a-textarea> diff --git a/web/html/form/tls_settings.html b/web/html/form/tls_settings.html index b6367f7b..0de6dae5 100644 --- a/web/html/form/tls_settings.html +++ b/web/html/form/tls_settings.html @@ -85,10 +85,10 @@ </template> <template v-else> <a-form-item label='{{ i18n "pages.inbounds.publicKey" }}'> - <a-input v-model="cert.cert"></a-input> + <a-textarea v-model="cert.cert"></a-textarea> </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input v-model="cert.key"></a-input> + <a-textarea v-model="cert.key"></a-textarea> </a-form-item> </template> <a-form-item label='OCSP stapling'> |
