Skip to content

Commit

Permalink
Merge pull request #1754 from didi/fix-forceupdate-data-change
Browse files Browse the repository at this point in the history
fix: 修复forceUpdate多次调用时数据更新异常问题
  • Loading branch information
hiyuki authored Dec 12, 2024
2 parents 640ec45 + b9794d6 commit c29e4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/core/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ export default class MpxProxy {
}
setByPath(this.target, key, data[key])
})
this.forceUpdateData = data
Object.assign(this.forceUpdateData, data)
} else {
this.forceUpdateAll = true
}
Expand Down

0 comments on commit c29e4ee

Please sign in to comment.