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:
authorДмитрий Олегович Саенко <saenkodmitriiol@gmail.com>2025-09-23 20:43:56 +0300
committerGitHub <noreply@github.com>2025-09-23 20:43:56 +0300
commit02bff4db6c99bac0aefb5c4c65c986d8d5b802a9 (patch)
tree09f7b5550bad4324fdaf63b34117766dba3e45ba /web/html/settings/panel/general.html
parent8ff4e1ff316cc60d1fb408c074f6294393758f43 (diff)
max port to 65535 (#3536)
* add EXPOSE port in Dockerfile * fix: max port 65 531 -> 65 535 * fix --------- Co-authored-by: mhsanaei <ho3ein.sanaei@gmail.com>
Diffstat (limited to 'web/html/settings/panel/general.html')
-rw-r--r--web/html/settings/panel/general.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/settings/panel/general.html b/web/html/settings/panel/general.html
index df011521..64fd050c 100644
--- a/web/html/settings/panel/general.html
+++ b/web/html/settings/panel/general.html
@@ -39,7 +39,7 @@
<template #title>{{ i18n "pages.settings.panelPort"}}</template>
<template #description>{{ i18n "pages.settings.panelPortDesc"}}</template>
<template #control>
- <a-input-number :min="1" :min="65531" v-model="allSetting.webPort" :style="{ width: '100%' }"></a-input>
+ <a-input-number :min="1" :min="65535" v-model="allSetting.webPort" :style="{ width: '100%' }"></a-input>
</template>
</a-setting-list-item>
<a-setting-list-item paddings="small">
@@ -137,7 +137,8 @@
<template #title>{{ i18n "pages.settings.datepicker"}}</template>
<template #description>{{ i18n "pages.settings.datepickerDescription"}}</template>
<template #control>
- <a-select :style="{ width: '100%' }" :dropdown-class-name="themeSwitcher.currentTheme" v-model="datepicker">
+ <a-select :style="{ width: '100%' }" :dropdown-class-name="themeSwitcher.currentTheme"
+ v-model="datepicker">
<a-select-option v-for="item in datepickerList" :value="item.value">
<span v-text="item.name"></span>
</a-select-option>