We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d52cb42 commit b1b7e1bCopy full SHA for b1b7e1b
packages/vtable-plugins/src/table-carousel-animation.ts
@@ -69,8 +69,8 @@ export class TableCarouselAnimationPlugin implements pluginsDefinition.IVTablePl
69
70
reset() {
71
this.playing = false;
72
- this.row = this.table.frozenRowCount;
73
- this.col = this.table.frozenColCount;
+ this.row = this.table?.frozenRowCount ?? 0;
+ this.col = this.table?.frozenColCount ?? 0;
74
}
75
76
play() {
0 commit comments