Skip to content

Commit

Permalink
Allow a slot to obtain its assigned extensions even if not all those …
Browse files Browse the repository at this point in the history
…extensions are registered yet (#391)
  • Loading branch information
brandones authored Apr 8, 2022
1 parent 0ddd020 commit 8e75ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/framework/esm-extensions/src/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,13 +351,13 @@ function calculateAssignedIds(
const ai = getOrder(
idA,
idOrder,
extensions[getExtensionNameFromId(idA)].order,
extensions[getExtensionNameFromId(idA)]?.order,
attachedIds
);
const bi = getOrder(
idB,
idOrder,
extensions[getExtensionNameFromId(idB)].order,
extensions[getExtensionNameFromId(idB)]?.order,
attachedIds
);

Expand Down

0 comments on commit 8e75ea4

Please sign in to comment.