diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
| commit | e19061d513b8c4fb2207b4a553a96ea086089612 (patch) | |
| tree | 8a05450f0f6d3e8a2a182976b1a38bf5cca824ea /web/html/settings/panel/general.html | |
| parent | 51e2fb6dbfb6f3f21b3f578c15c3dc0d47c4a66e (diff) | |
TLS: Remove ECH Force Query
Diffstat (limited to 'web/html/settings/panel/general.html')
| -rw-r--r-- | web/html/settings/panel/general.html | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/web/html/settings/panel/general.html b/web/html/settings/panel/general.html index 6969a1b4..ffc2cda1 100644 --- a/web/html/settings/panel/general.html +++ b/web/html/settings/panel/general.html @@ -162,7 +162,8 @@ <a-setting-list-item paddings="small"> <template #title>LDAP Port</template> <template #control> - <a-input-number :min="1" :max="65535" v-model="allSetting.ldapPort" :style="{ width: '100%' }"></a-input-number> + <a-input-number :min="1" :max="65535" v-model="allSetting.ldapPort" + :style="{ width: '100%' }"></a-input-number> </template> </a-setting-list-item> <a-setting-list-item paddings="small"> @@ -239,10 +240,13 @@ <template #title>Inbound tags</template> <template #description>Select inbounds to manage (auto create/delete)</template> <template #control> - <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" :style="{ width: '100%' }" v-model="ldapInboundTagList"> - <a-select-option v-for="opt in inboundOptions" :key="opt.value" :value="opt.value">[[ opt.label ]]</a-select-option> + <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" :style="{ width: '100%' }" + v-model="ldapInboundTagList"> + <a-select-option v-for="opt in inboundOptions" :key="opt.value" :value="opt.value">[[ opt.label + ]]</a-select-option> </a-select> - <div v-if="inboundOptions.length==0" style="margin-top:6px;color:#999">No inbounds found. Please create one in Inbounds.</div> + <div v-if="inboundOptions.length==0" style="margin-top:6px;color:#999">No inbounds found. Please create + one in Inbounds.</div> </template> </a-setting-list-item> <a-setting-list-item paddings="small"> @@ -260,19 +264,22 @@ <a-setting-list-item paddings="small"> <template #title>Default total (GB)</template> <template #control> - <a-input-number :min="0" v-model="allSetting.ldapDefaultTotalGB" :style="{ width: '100%' }"></a-input-number> + <a-input-number :min="0" v-model="allSetting.ldapDefaultTotalGB" + :style="{ width: '100%' }"></a-input-number> </template> </a-setting-list-item> <a-setting-list-item paddings="small"> <template #title>Default expiry (days)</template> <template #control> - <a-input-number :min="0" v-model="allSetting.ldapDefaultExpiryDays" :style="{ width: '100%' }"></a-input-number> + <a-input-number :min="0" v-model="allSetting.ldapDefaultExpiryDays" + :style="{ width: '100%' }"></a-input-number> </template> </a-setting-list-item> <a-setting-list-item paddings="small"> <template #title>Default Limit IP</template> <template #control> - <a-input-number :min="0" v-model="allSetting.ldapDefaultLimitIP" :style="{ width: '100%' }"></a-input-number> + <a-input-number :min="0" v-model="allSetting.ldapDefaultLimitIP" + :style="{ width: '100%' }"></a-input-number> </template> </a-setting-list-item> </a-collapse-panel> |
