Skip to content

Commit

Permalink
πŸ› Skip undrying null setting groups
Browse files Browse the repository at this point in the history
  • Loading branch information
skerit committed Sep 11, 2024
1 parent d248e43 commit a8bb07c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/core/setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,11 @@ Group.setStatic(function unDry(obj, cloned) {
child;

for (child of children) {

if (!child) {
continue;
}

result.children.set(child.name, child);
child.group = result;
}
Expand Down

0 comments on commit a8bb07c

Please sign in to comment.