Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/html/settings/panel/general.html')
-rw-r--r--web/html/settings/panel/general.html21
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>