fix: register layout child for nested custom components (#7230)

This commit is contained in:
Morten Sjøgren
2019-05-31 13:16:54 +02:00
committed by Manol Donev
parent a345a14a8b
commit 888fc5740f
3 changed files with 8 additions and 4 deletions

View File

@@ -136,6 +136,10 @@ export class GridLayout extends GridLayoutBase {
this.eachLayoutChild((child, last) => {
let measureSpecs = this.map.get(child);
if (!measureSpecs) {
return;
}
this.updateMeasureSpecs(child, measureSpecs);
this.helper.addMeasureSpec(measureSpecs);
});