From 667ee5256ef98b839267c983e3125b9f2f8447ed Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 30 Dec 2024 17:15:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Fix=20Application=20Startup=20Failure=20?= =?UTF-8?q?Caused=20by=20Case-Sensitive=20Applica=E2=80=A6=20(#7601)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs https://github.com/1Panel-dev/1Panel/issues/7600 --- frontend/src/views/app-store/detail/install/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/app-store/detail/install/index.vue b/frontend/src/views/app-store/detail/install/index.vue index 39db5e87b..c85d8ef50 100644 --- a/frontend/src/views/app-store/detail/install/index.vue +++ b/frontend/src/views/app-store/detail/install/index.vue @@ -173,7 +173,7 @@ const installData = ref({ }); const open = ref(false); const rules = ref({ - name: [Rules.appName], + name: [Rules.paramSimple], params: [], version: [Rules.requiredSelect], containerName: [Rules.containerName],