Skip to content

Commit 9b12d4a

Browse files
authored
Fix microsoft#184183. Multiple output height updates are skipped. (microsoft#184185)
1 parent 65600c1 commit 9b12d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,13 +616,13 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
616616

617617
{
618618
if (!update.init) {
619-
return;
619+
continue;
620620
}
621621

622622
const output = this.reversedInsetMapping.get(update.id);
623623

624624
if (!output) {
625-
return;
625+
continue;
626626
}
627627

628628
const inset = this.insetMapping.get(output)!;

0 commit comments

Comments
 (0)