Skip to content

Commit ede16c3

Browse files
committed
fix #146227.
1 parent 3a5a169 commit ede16c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/vs/workbench/contrib/notebook/browser/view/cellParts

src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class CodeCell extends Disposable {
5454
super();
5555

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

6060
const editorHeight = this.calculateInitEditorHeight();

0 commit comments

Comments
 (0)