We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402092d commit db01f71Copy full SHA for db01f71
src/vs/workbench/contrib/notebook/browser/diff/cellComponents.ts
@@ -316,6 +316,13 @@ abstract class AbstractCellRenderer extends Disposable {
316
this._register(this._metadataHeader);
317
this._metadataHeader.buildHeader();
318
319
+ if (this.notebookEditor.textModel?.transientOptions.transientOutputs) {
320
+ this._layoutInfo.outputHeight = 0;
321
+ this._layoutInfo.outputStatusHeight = 0;
322
+ this.layout({});
323
+ return;
324
+ }
325
+
326
this._outputHeaderContainer = DOM.append(this._diffEditorContainer, DOM.$('.output-header-container'));
327
this._outputInfoContainer = DOM.append(this._diffEditorContainer, DOM.$('.output-info-container'));
328
0 commit comments