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 8bee106 commit 08da06cCopy full SHA for 08da06c
services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js
@@ -410,9 +410,8 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
410
411
resourcesList.forEach(study => {
412
const state = study["state"];
413
- const projectLocked = osparc.study.Utils.state.isProjectLocked(state);
414
const projectStatus = osparc.study.Utils.state.getProjectStatus(state);
415
- if (projectLocked && projectStatus === "CLOSING") {
+ if (projectStatus === "CLOSING") {
416
// websocket might have already notified that the state was closed.
417
// But the /projects calls response got after the ws message. Ask again to make sure
418
const delay = 2000;
0 commit comments