fix translation bugs

This commit is contained in:
Hossin Asaadi
2022-11-09 08:43:21 -05:00
parent b833174d5f
commit e3952c01a3
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
</a-form-item>
<a-form-item v-if="inbound.xtls" label="flow">
<a-select v-model="inbound.settings.clients[0].flow" style="width: 150px">
<a-select-option value="" v-text='{{ i18n "none" }}'></a-select-option>
<a-select-option value="">{{ i18n "none" }}</a-select-option>
<a-select-option v-for="key in FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
</a-select>
</a-form-item>

View File

@@ -42,7 +42,7 @@
</a-form-item>
<a-form-item v-if="inbound.xtls" label="flow">
<a-select v-model="vless.flow" style="width: 150px">
<a-select-option value="" v-text='{{ i18n "none" }}'></a-select-option>
<a-select-option value="">{{ i18n "none" }}</a-select-option>
<a-select-option v-for="key in FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
</a-select>
</a-form-item>