Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Nov 4, 2024
1 parent b7814bb commit 402d036
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ qx.Class.define("osparc.store.Services", {
let serviceLatest = servicesLatest[key];
if (excludeFrontend && key.includes("simcore/services/frontend/")) {
// do not add frontend services
return;
continue;
}
if (excludeDeprecated && serviceLatest["retired"]) {
// first check if a previous version of this service isn't retired
Expand All @@ -74,7 +74,7 @@ qx.Class.define("osparc.store.Services", {
}
if (serviceLatest["retired"]) {
// do not add retired services
return;
continue;
}
}
servicesList.push(serviceLatest);
Expand Down

0 comments on commit 402d036

Please sign in to comment.