Skip to content

Commit

Permalink
fix: 修复 function_history 集合名 未跟随后端更新错误;
Browse files Browse the repository at this point in the history
  • Loading branch information
maslow committed Aug 9, 2021
1 parent e9d52d3 commit 0568b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/devops-admin/src/views/development/function.vue
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export default {
*/
async addFunctionHistory() {
const data = Object.assign({}, this.func)
await db.collection('__function_history')
await db.collection(Constants.cn.function_history)
.add({
func_id: this.func._id,
data: data,
Expand Down

0 comments on commit 0568b08

Please sign in to comment.