1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 16:29:17 +08:00

fix: 解决应用无法升级的问题 (#1208)

This commit is contained in:
zhengkunwang223 2023-05-31 23:27:03 +08:00 committed by GitHub
parent df77ac4318
commit cbdf1ad7b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -152,8 +152,9 @@ const paramModel = ref<any>({
});
const rules = reactive({
params: {},
cpuQuota: [Rules.requiredInput, checkNumberRange(0, 99999)],
cpuQuota: [Rules.requiredInput, checkNumberRange(0, 999)],
memoryLimit: [Rules.requiredInput, checkNumberRange(0, 9999999999)],
containerName: [Rules.containerName],
});
const submitModel = ref<any>({});
@ -162,6 +163,7 @@ const acceptParams = async (props: ParamProps) => {
params.value = [];
paramData.value.id = props.id;
paramData.value.app = props.app;
paramModel.value.params = {};
edit.value = false;
await get();
open.value = true;

View File

@ -157,7 +157,7 @@
plain
round
size="small"
:disabled="installed.status === 'Running'"
:disabled="installed.status !== 'Running'"
@click="openOperate(installed, 'upgrade')"
v-if="mode === 'upgrade'"
>

View File

@ -360,6 +360,7 @@ const rules = ref<any>({
params: {},
cpuQuota: [Rules.requiredInput, checkNumberRange(0, 99999)],
memoryLimit: [Rules.requiredInput, checkNumberRange(0, 9999999999)],
containerName: [Rules.containerName],
},
proxyType: [Rules.requiredSelect],
port: [Rules.port],