diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-12-23 16:07:09 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-12-23 16:07:09 +0300 |
| commit | 9261f9c665fe0a5972df4f534f09f8fa3a52d01b (patch) | |
| tree | 7f94106d07aa5147ec1060e102d17cc5364b19f8 /web/html | |
| parent | 6a41e19f7ab98b46cbf00a4d9f10395e2113ff1d (diff) | |
fix protocol in routing rules modal
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html')
| -rw-r--r-- | web/html/xui/xray_rule_modal.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/xray_rule_modal.html b/web/html/xui/xray_rule_modal.html index 97e396a5..9ed9e06a 100644 --- a/web/html/xui/xray_rule_modal.html +++ b/web/html/xui/xray_rule_modal.html @@ -36,8 +36,8 @@ </a-select> </a-form-item> <a-form-item label='Protocol'> - <a-select v-model="ruleModal.rule.protocol" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="x in ['','http','tls','bittorrent']" :value="x">[[ x ]]</a-select-option> + <a-select v-model="ruleModal.rule.protocol" mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="x in ['http','tls','bittorrent']" :value="x">[[ x ]]</a-select-option> </a-select> </a-form-item> <a-form-item label='Attributes'> |
