Skip to content

Commit

Permalink
fix: 去掉发布配置的name字段
Browse files Browse the repository at this point in the history
  • Loading branch information
tingfuyeh committed Aug 3, 2023
1 parent 50fb530 commit 35bef64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export default class PageDuck extends Base {
return
}
}
const result = yield releaseConfigFile({ namespace, group, fileName: name, name })
const result = yield releaseConfigFile({ namespace, group, fileName: name })
if (result) {
notification.success({ description: '发布成功' })
yield put({ type: types.FETCH_DATA })
Expand Down
2 changes: 1 addition & 1 deletion web/src/polaris/configuration/fileGroup/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export async function deleteConfigFiles(params: DeleteConfigFileParams) {
return res
}
export interface ReleaseConfigFileParams {
name: string
name?: string
namespace: string
group: string
fileName: string
Expand Down

0 comments on commit 35bef64

Please # to comment.