Skip to content

Commit

Permalink
Minor fix for #750.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwod committed Nov 9, 2021
1 parent cbe6560 commit 159d121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion new-backend/server/api/services/config.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ class ConfigService {
)
);
// And then update the mapConfig with the products.
mapConfig.tools[editIndexInTools].options.products = products;
mapConfig.tools[fmeServerIndexInTools].options.products = products;
}

return mapConfig;
Expand Down
2 changes: 1 addition & 1 deletion new-backend/server/api/services/config.service.v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class ConfigServiceV2 {
)
);
// And then update the mapConfig with the products.
mapConfig.tools[editIndexInTools].options.products = products;
mapConfig.tools[fmeServerIndexInTools].options.products = products;
}

return mapConfig;
Expand Down

0 comments on commit 159d121

Please sign in to comment.