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 0f9d05c commit 3b39182Copy full SHA for 3b39182
src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts
@@ -2450,7 +2450,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
2450
const cell = this.viewModel?.viewCells.find(vc => vc.handle === cellInfo.cellHandle);
2451
if (cell && cell instanceof CodeCellViewModel) {
2452
const outputIndex = cell.outputsViewModels.indexOf(output);
2453
- if (isInit && outputHeight !== 0) {
+ if (outputHeight !== 0) {
2454
cell.updateOutputMinHeight(0);
2455
}
2456
this._debug('update cell output', cell.handle, outputHeight);
0 commit comments