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 effd97b commit d0ed40fCopy full SHA for d0ed40f
services/static-webserver/client/source/class/osparc/study/Utils.js
@@ -407,12 +407,15 @@ qx.Class.define("osparc.study.Utils", {
407
return "UNKNOWN_SERVICES";
408
}
409
410
- if (studyData["state"] && studyData["state"]["locked"] && studyData["state"]["locked"]["value"]) {
411
- return "IN_USE";
412
- }
413
if (this.isInDebt(studyData)) {
414
return "IN_DEBT";
415
+ if (studyData["state"] && studyData["state"]["locked"] && studyData["state"]["locked"]["value"]) {
+ if (osparc.utils.DisabledPlugins.isSimultaneousAccessEnabled()) {
+ return false;
416
+ }
417
+ return "IN_USE";
418
419
return false;
420
},
421
0 commit comments