diff options
Diffstat (limited to 'web/html/xui')
| -rw-r--r-- | web/html/xui/form/outbound.html | 3 | ||||
| -rw-r--r-- | web/html/xui/form/stream/stream_ws.html | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index fde2f27c..a337ab28 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -337,6 +337,9 @@ <a-form-item label='{{ i18n "path" }}'> <a-input v-model.trim="outbound.stream.ws.path"></a-input> </a-form-item> + <a-form-item label='Heartbeat Period'> + <a-input-number v-model.number="outbound.stream.ws.heartbeatPeriod" :min="0"></a-input-number> + </a-form-item> </template> <!-- http --> diff --git a/web/html/xui/form/stream/stream_ws.html b/web/html/xui/form/stream/stream_ws.html index 80f44c50..16a423ca 100644 --- a/web/html/xui/form/stream/stream_ws.html +++ b/web/html/xui/form/stream/stream_ws.html @@ -9,6 +9,9 @@ <a-form-item label='{{ i18n "path" }}'> <a-input v-model.trim="inbound.stream.ws.path"></a-input> </a-form-item> + <a-form-item label='Heartbeat Period'> + <a-input-number v-model.number="inbound.stream.ws.heartbeatPeriod" :min="0"></a-input-number> + </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.stream.tcp.requestHeader" }}'> <a-button icon="plus" size="small" @click="inbound.stream.ws.addHeader('host', '')"></a-button> </a-form-item> |
