Skip to content

Commit

Permalink
fix #146227.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Mar 29, 2022
1 parent 3a5a169 commit ede16c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class CodeCell extends Disposable {
super();

const cellEditorOptions = this._register(new CellEditorOptions(this.notebookEditor, this.notebookEditor.notebookOptions, this.configurationService, this.viewCell.language));
this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 2 });
this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 500 });
this.cellParts = [...templateData.cellParts, cellEditorOptions, this._outputContainerRenderer];

const editorHeight = this.calculateInitEditorHeight();
Expand Down

0 comments on commit ede16c3

Please sign in to comment.