diff --git a/frontend/src/lang/modules/en.ts b/frontend/src/lang/modules/en.ts index 291d75e209e9..9f8b8559c4aa 100644 --- a/frontend/src/lang/modules/en.ts +++ b/frontend/src/lang/modules/en.ts @@ -3,6 +3,7 @@ const message = { commons: { true: 'true', false: 'false', + example: 'Such as:', button: { create: 'Create ', add: 'Add ', @@ -537,6 +538,7 @@ const message = { compose: 'Compose', composeHelper: 'The current content has passed the format verification. Please click Submit to complete the creation', + composePathHelper: 'Config file save path: {0}', apps: 'Apps', local: 'Local', createCompose: 'Create compose', diff --git a/frontend/src/lang/modules/zh.ts b/frontend/src/lang/modules/zh.ts index db4de1068f5c..93176dea633e 100644 --- a/frontend/src/lang/modules/zh.ts +++ b/frontend/src/lang/modules/zh.ts @@ -545,7 +545,7 @@ const message = { compose: '编排', composeHelper: '当前内容已通过格式验证,请点击确认完成创建', - composePathHelper: '容器编排将保存在: {0}', + composePathHelper: '配置文件保存路径: {0}', apps: '应用商店', local: '本地', createCompose: '创建编排', diff --git a/frontend/src/views/container/compose/create/index.vue b/frontend/src/views/container/compose/create/index.vue index 2678e3b7a028..e7e1ea926ca7 100644 --- a/frontend/src/views/container/compose/create/index.vue +++ b/frontend/src/views/container/compose/create/index.vue @@ -199,7 +199,7 @@ const loadPath = async () => { }; const changePath = async () => { - composeFile.value = baseDir.value + '/docker/compose/' + form.name + '/xxx'; + composeFile.value = baseDir.value + '/docker/compose/' + form.name; }; type FormInstance = InstanceType;