Skip to content

Commit

Permalink
fix .get is not defined (#2484)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx authored Oct 25, 2023
1 parent d594b2a commit 73f7a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ember_debug/libs/promise-assembler.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class PromiseAssembler extends BaseObject {
if (guid) {
const index = this.promiseIndex[guid];
if (index !== undefined) {
return this.all.get(index);
return this.all[index];
}
} else {
return this.all;
Expand Down

0 comments on commit 73f7a1f

Please sign in to comment.