Skip to content

Commit e18005f

Browse files
authored
Merge pull request microsoft#146228 from microsoft/rebornix/fix-output-limit
Fix output limit
2 parents 521a3d8 + ede16c3 commit e18005f

File tree

1 file changed

+1
-1
lines changed
  • src/vs/workbench/contrib/notebook/browser/view/cellParts

1 file changed

+1
-1
lines changed

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)