mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
fix build.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user