From bc0645202f34edf82aa317f8915dd2b4d1b249ad Mon Sep 17 00:00:00 2001 From: rebornix Date: Wed, 3 Feb 2021 16:46:49 -0800 Subject: [PATCH] fix build. --- .../contrib/notebook/browser/view/renderers/codeCell.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/browser/view/renderers/codeCell.ts b/src/vs/workbench/contrib/notebook/browser/view/renderers/codeCell.ts index 74e072419b0..ab0a9e52b05 100644 --- a/src/vs/workbench/contrib/notebook/browser/view/renderers/codeCell.ts +++ b/src/vs/workbench/contrib/notebook/browser/view/renderers/codeCell.ts @@ -17,13 +17,13 @@ import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewMod import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService'; import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { ClickTargetType, getExecuteCellPlaceholder } from 'vs/workbench/contrib/notebook/browser/view/renderers/cellWidgets'; -import { OutputContainer } from 'vs/workbench/contrib/notebook/browser/view/renderers/cellOutput'; +import { CellOutputContainer } from 'vs/workbench/contrib/notebook/browser/view/renderers/cellOutput'; import { INotebookCellStatusBarService } from 'vs/workbench/contrib/notebook/common/notebookCellStatusBarService'; import { NotebookCellsChangeType } from 'vs/workbench/contrib/notebook/common/notebookCommon'; export class CodeCell extends Disposable { - private _outputContainerRenderer: OutputContainer; + private _outputContainerRenderer: CellOutputContainer; private _activeCellRunPlaceholder: IDisposable | null = null; private _untrustedStatusItem: IDisposable | null = null; @@ -221,7 +221,7 @@ export class CodeCell extends Disposable { updateFocusMode(); // Render Outputs - this._outputContainerRenderer = new OutputContainer(notebookEditor, viewCell, templateData, notebookService, quickInputService, openerService, textFileService); + this._outputContainerRenderer = new CellOutputContainer(notebookEditor, viewCell, templateData, notebookService, quickInputService, openerService, textFileService); this._outputContainerRenderer.render(editorHeight); // Need to do this after the intial renderOutput updateForCollapseState();