This commit is contained in:
Aaron Munger 2024-06-27 15:50:29 -07:00
parent 147df84bdf
commit 2b578cda56

View File

@ -465,9 +465,9 @@ export class CodeCellViewModel extends BaseCellViewModel implements ICellViewMod
this._ensureOutputsTop();
if (index === 0 || height >= 3) {
if (index === 0 || height > 0) {
this._outputViewModels[index].setVisible(true);
} else if (height < 3) {
} else if (height === 0) {
this._outputViewModels[index].setVisible(false);
}