We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1282e6 commit 85442c4Copy full SHA for 85442c4
src/renderer/host-element.ts
@@ -29,7 +29,9 @@ export class HostElement {
29
}
30
31
get children(): HostNode[] {
32
- const result = this.instance.children.map((child) => HostElement.fromInstance(child));
+ const result = this.instance.children
33
+ .filter((child) => !child.isHidden)
34
+ .map((child) => HostElement.fromInstance(child));
35
return result;
36
37
0 commit comments