diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-01-05 22:41:56 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-01-05 23:04:18 +0300 |
| commit | 49d3957c07bf23fdd3860b0d831104ef9d961a52 (patch) | |
| tree | 2fc37b5c4c57cf716e3226483347bd87e58eb162 /web/html/xui/form/outbound.html | |
| parent | ee946ceab20def23a4ef2188271a297725ec4909 (diff) | |
bug fix
Diffstat (limited to 'web/html/xui/form/outbound.html')
| -rw-r--r-- | web/html/xui/form/outbound.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index 4294d443..8abef4aa 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -399,7 +399,7 @@ <a-input v-model="outbound.stream.xhttp.xmux.hMaxReusableSecs"></a-input> </a-form-item> <a-form-item label='Keep Alive Period'> - <a-input v-model.number="outbound.stream.xhttp.xmux.hKeepAlivePeriod"></a-input> + <a-input-number v-model.number="outbound.stream.xhttp.xmux.hKeepAlivePeriod"></a-input-number> </a-form-item> </template> </template> @@ -469,7 +469,7 @@ <a-switch v-model="outbound.stream.sockopt.tcpFastOpen"></a-switch> </a-form-item> <a-form-item label="Keep Alive Interval"> - <a-input-number v-model="outbound.stream.sockopt.tcpKeepAliveInterval" :min="0"></a-input-number> + <a-input-number v-model.number="outbound.stream.sockopt.tcpKeepAliveInterval" :min="0"></a-input-number> </a-form-item> <a-form-item label="Multipath TCP"> <a-switch v-model.trim="outbound.stream.sockopt.tcpMptcp"></a-switch> @@ -486,10 +486,10 @@ </a-form-item> <template v-if="outbound.mux.enabled"> <a-form-item label="Concurrency"> - <a-input-number v-model="outbound.mux.concurrency" :min="-1" :max="1024"></a-input-number> + <a-input-number v-model.number="outbound.mux.concurrency" :min="-1" :max="1024"></a-input-number> </a-form-item> <a-form-item label="xudp Concurrency"> - <a-input-number v-model="outbound.mux.xudpConcurrency" :min="-1" :max="1024"></a-input-number> + <a-input-number v-model.number="outbound.mux.xudpConcurrency" :min="-1" :max="1024"></a-input-number> </a-form-item> <a-form-item label="xudp UDP 443"> <a-select v-model="outbound.mux.xudpProxyUDP443" :dropdown-class-name="themeSwitcher.currentTheme"> |
