Skip to content

Commit 0d52ba7

Browse files
committed
fix: delete console.log code
1 parent 2e4b66a commit 0d52ba7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/vtable/src/scenegraph/graphic/chart.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ export class Chart extends Rect {
549549
releaseAllChartInstance?: boolean;
550550
} = {}
551551
) {
552-
console.log('----deactivate chart instance 1', this.activeChartInstance?.id, this.parent.col, this.parent.row);
552+
// console.log('----deactivate chart instance 1', this.activeChartInstance?.id, this.parent.col, this.parent.row);
553553
this.activeChartInstanceHoverOnMark = null;
554554
this.justShowMarkTooltip = undefined;
555555
this.justShowMarkTooltipTimer = Date.now();
@@ -574,7 +574,7 @@ export class Chart extends Rect {
574574
false,
575575
false
576576
);
577-
console.log('----release chart instance 1', this.activeChartInstance.id, this.parent.col, this.parent.row);
577+
// console.log('----release chart instance 1', this.activeChartInstance.id, this.parent.col, this.parent.row);
578578
this.activeChartInstance?.release();
579579

580580
this.activeChartInstance = null;

packages/vtable/src/scenegraph/group-creater/progress/proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ export class SceneProxy {
659659
if (this.table.widthMode === 'autoWidth') {
660660
computeColsWidth(this.table, startCol, endCol, false);
661661
}
662-
console.log('updateRightFrozenCellGroups', startCol, endCol);
662+
// console.log('updateRightFrozenCellGroups', startCol, endCol);
663663
updateColContent(startCol, endCol, this);
664664

665665
if (this.table.isAutoRowHeight(this.rowStart)) {

0 commit comments

Comments
 (0)