From 49a777e2d80e6050bbc562a9d5ae4315940ffdd6 Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 22 Sep 2025 15:58:04 +0800 Subject: [PATCH] feat: Optimize local application installation name settings. (#10430) Refs https://github.com/1Panel-dev/1Panel/issues/10406 --- frontend/src/views/app-store/detail/form/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/app-store/detail/form/index.vue b/frontend/src/views/app-store/detail/form/index.vue index 39a6623d9..4060743cc 100644 --- a/frontend/src/views/app-store/detail/form/index.vue +++ b/frontend/src/views/app-store/detail/form/index.vue @@ -275,7 +275,7 @@ const getVersionDetail = async (version: string) => { }; const initForm = async (appKey: string) => { - formData.value.name = appKey; + formData.value.name = appKey.replace(/^local/, ''); const res = await getAppByKey(appKey); currentApp.value = res.data; appVersions.value = currentApp.value.versions;