From 2575d72b6f3e68956e1941f152b813114807dd06 Mon Sep 17 00:00:00 2001 From: zhengkunwang223 <1paneldev@sina.com> Date: Mon, 22 Sep 2025 11:47:46 +0800 Subject: [PATCH] feat: Optimize local application installation name settings. --- 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 39a6623d9745..4060743cc7ee 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;