Fix ModelView container child layout issues (#13412)

This commit is contained in:
Charles Gagnon
2020-11-16 10:59:21 -08:00
committed by GitHub
parent c699179e15
commit b57bf53b67
2 changed files with 5 additions and 3 deletions

View File

@@ -361,12 +361,12 @@ export abstract class ContainerBase<T, TPropertyBag extends azdata.ComponentProp
}
public layout(): void {
super.layout();
if (this._componentWrappers) {
this._componentWrappers.forEach(wrapper => {
wrapper.layout();
});
}
super.layout();
}
abstract setLayout(layout: any): void;