fix build.

This commit is contained in:
rebornix 2021-02-03 16:46:49 -08:00 committed by Sandeep Somavarapu
parent 43beff622a
commit 866c0160d4

View file

@ -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();