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;