Add back comp null check
This commit is contained in:
@ -24,7 +24,7 @@ export abstract class XmlComponent extends BaseXmlComponent {
|
|||||||
}
|
}
|
||||||
return comp;
|
return comp;
|
||||||
})
|
})
|
||||||
.filter((comp) => comp); // Exclude null, undefined, and empty strings
|
.filter((comp) => comp !== null); // Exclude null, undefined, and empty strings
|
||||||
return {
|
return {
|
||||||
[this.rootKey]: children,
|
[this.rootKey]: children,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user