Skip to content

Commit

Permalink
apply same fix to .ts version
Browse files Browse the repository at this point in the history
  • Loading branch information
orukusaki committed May 13, 2024
1 parent ddeb6bf commit 1bfc575
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function getElementChildren(element: HTMLElement): HTMLElement[] {
if (child.hasAttribute(Config.getConfig("dataContentTypeAttributeName"))) {
children.push(child);
} else {
children = getElementChildren(child);
children.push(...getElementChildren(child));
}
}
});
Expand Down

0 comments on commit 1bfc575

Please sign in to comment.