1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-18 15:59:16 +08:00

fix: Fix Application Startup Failure Caused by Case-Sensitive Applica… (#7601)

Refs https://github.com/1Panel-dev/1Panel/issues/7600
This commit is contained in:
zhengkunwang 2024-12-30 17:15:49 +08:00 committed by GitHub
parent f8356de93c
commit 667ee5256e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -173,7 +173,7 @@ const installData = ref<InstallProps>({
});
const open = ref(false);
const rules = ref<FormRules>({
name: [Rules.appName],
name: [Rules.paramSimple],
params: [],
version: [Rules.requiredSelect],
containerName: [Rules.containerName],