Skip to content

Commit

Permalink
Merge pull request microsoft#146228 from microsoft/rebornix/fix-outpu…
Browse files Browse the repository at this point in the history
…t-limit

Fix output limit
  • Loading branch information
rebornix authored and Liangcheng Juves committed Mar 31, 2022
2 parents f381db0 + deab29e commit 95a83aa
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 95a83aa

Please sign in to comment.