Call onDidInsert Before Layout (#11819)

This commit is contained in:
Chris LaFreniere
2020-08-14 19:52:27 -07:00
committed by GitHub
parent 3b2e53d270
commit e90578694b

View File

@@ -105,9 +105,8 @@ export class GridOutputComponent extends AngularDisposable implements IMimeCompo
let outputElement = <HTMLElement>this.output.nativeElement;
outputElement.appendChild(this._table.element);
this._register(attachTableStyler(this._table, this.themeService));
this.layout();
this._table.onDidInsert();
this.layout();
this._initialized = true;
}
}