Skip to content

Commit

Permalink
fix: debug currentSkeleton$ if param is null (#3164)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumixraku authored Aug 23, 2024
1 parent b8bf3b1 commit 3283d61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class FormulaEditorShowController extends Disposable implements IRenderMo
this.disposeWithMe(
this._sheetSkeletonManagerService.currentSkeleton$.subscribe((param) => {
if (param == null) {
this._logService.error('[FormulaEditorShowController]: should not receive currentSkeleton$ as null!');
this._logService.debug('[FormulaEditorShowController]: should not receive currentSkeleton$ as null!');
} else {
const { skeleton } = param;
const prevSheetId = this._skeleton?.worksheet?.getSheetId();
Expand Down

0 comments on commit 3283d61

Please sign in to comment.