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 a99a6b1 commit cde6effCopy full SHA for cde6eff
services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js
@@ -847,6 +847,10 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
847
const latestCompatible = osparc.service.Utils.getLatestCompatible(key, latestVersion);
848
osparc.store.Services.getService(latestCompatible["key"], latestCompatible["version"])
849
.then(latestMetadata => {
850
+ // make sure this one is not deprecated
851
+ if (osparc.service.Utils.isDeprecated(latestMetadata)) {
852
+ return;
853
+ }
854
const title = newButtonInfo.title + " " + osparc.service.Utils.extractVersionDisplay(latestMetadata);
855
const desc = newButtonInfo.description;
856
const mode = this._resourcesContainer.getMode();
0 commit comments