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 8b4fe02 commit 6f59d5bCopy full SHA for 6f59d5b
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -165,6 +165,17 @@ qx.Class.define("osparc.store.Services", {
165
}
166
};
167
this.__studyServicesPromisesCached[studyId] = osparc.data.Resources.fetch("studies", "getServices", params)
168
+ /*
169
+ OM: here
170
+ .then(resp => {
171
+ const services = resp["services"];
172
+ services.forEach(service => {
173
+ service.version = service["release"]["version"];
174
+ this.__addServiceToCache(service);
175
+ });
176
+ return resp;
177
+ })
178
+ */
179
.finally(() => {
180
delete this.__studyServicesPromisesCached[studyId];
181
});
0 commit comments