Fix #184183. Multiple output height updates are skipped. (#184185)

This commit is contained in:
Peng Lyu 2023-06-02 10:51:05 -07:00 committed by GitHub
parent 65600c155b
commit 9b12d4ada6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -616,13 +616,13 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
{
if (!update.init) {
return;
continue;
}
const output = this.reversedInsetMapping.get(update.id);
if (!output) {
return;
continue;
}
const inset = this.insetMapping.get(output)!;