Skip to content

Commit

Permalink
fix: merged node requirements for clients
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham committed Aug 1, 2024
1 parent 01415f1 commit 09a3fd7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ const AddNodeStepperModal = ({
for (const [serviceId, selectOption] of Object.entries(
clientSelections,
)) {
console.log(`${serviceId}: ${selectOption}`);
const clientId = selectOption.specId;
console.log(
`merging reqs. serviceId, selectOption: ${serviceId}`,
selectOption,
);
const clientId = selectOption.value;
if (nodeLibrary?.[clientId]?.systemRequirements) {
reqs.push(
nodeLibrary[clientId].systemRequirements as SystemRequirements,
Expand Down

0 comments on commit 09a3fd7

Please sign in to comment.