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