Skip to content

Commit

Permalink
fix: error when update in vue-cheetah-grid (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi authored Jul 12, 2024
1 parent 3fe6f36 commit 7bdc6f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vue-cheetah-grid/lib/CGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,7 @@ export default {
frozenColCount (frozenColCount) {
if (this.rawGrid) {
this.rawGrid.frozenColCount = frozenColCount
this.$_CGrid_nextTickInvalidate()
}
},
allowRangePaste (allowRangePaste) {
Expand Down Expand Up @@ -652,7 +653,7 @@ export default {
this.rawGrid.layout = layout
}
this.rawGrid.theme = theme
this.rawGrid.$_CGrid_nextTickInvalidate()
this.$_CGrid_nextTickInvalidate()
this._beforeGridProps = extend({}, gridProps)
return
}
Expand Down

0 comments on commit 7bdc6f8

Please sign in to comment.