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 03feac0 commit 9b1dfb4Copy full SHA for 9b1dfb4
services/static-webserver/client/source/class/osparc/store/Jobs.js
@@ -106,10 +106,10 @@ qx.Class.define("osparc.store.Jobs", {
106
let job = this.getJob(subJobData["projectUuid"]);
107
if (!job) {
108
const jobs = this.getJobs();
109
- const unknownJob = new osparc.data.Job({
+ job = new osparc.data.Job({
110
"projectUuid": subJobData["projectUuid"],
111
});
112
- jobs.push(unknownJob);
+ jobs.push(job);
113
}
114
const subJob = job.addSubJob(subJobData);
115
return subJob;
0 commit comments