We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71fbac commit 01f0943Copy full SHA for 01f0943
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -293,7 +293,11 @@ qx.Class.define("osparc.store.Services", {
293
const unaccessibleServices = [];
294
const wbServices = osparc.study.Utils.extractUniqueServices(workbench);
295
wbServices.forEach(srv => {
296
- if (srv.key in allServices && srv.version in allServices[srv.key]) {
+ if (
297
+ srv.key in allServices &&
298
+ srv.version in allServices[srv.key] &&
299
+ allServices[srv.key][srv.version] // check metadata is not null
300
+ ) {
301
return;
302
}
303
const idx = unaccessibleServices.findIndex(unSrv => unSrv.key === srv.key && unSrv.version === srv.version);
0 commit comments