Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Oct 25, 2024
1 parent 6e6c290 commit 1f888da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/promise.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default class Promise extends EmberObject {
_allChildren() {
let children = [...this.children];
children.forEach((item) => {
children = [...children, item._allChildren()];
children = [...children, ...item._allChildren()];
});
return children;
}
Expand Down

0 comments on commit 1f888da

Please sign in to comment.