Skip to content

Commit

Permalink
Merge pull request #146228 from microsoft/rebornix/fix-output-limit
Browse files Browse the repository at this point in the history
Fix output limit
  • Loading branch information
rebornix committed Mar 29, 2022
2 parents 521a3d8 + ede16c3 commit e18005f
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 e18005f

Please sign in to comment.