Skip to content

Commit 9b1dfb4

Browse files
committed
fix
1 parent 03feac0 commit 9b1dfb4

File tree

1 file changed

+2
-2
lines changed
  • services/static-webserver/client/source/class/osparc/store

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/store/Jobs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ qx.Class.define("osparc.store.Jobs", {
106106
let job = this.getJob(subJobData["projectUuid"]);
107107
if (!job) {
108108
const jobs = this.getJobs();
109-
const unknownJob = new osparc.data.Job({
109+
job = new osparc.data.Job({
110110
"projectUuid": subJobData["projectUuid"],
111111
});
112-
jobs.push(unknownJob);
112+
jobs.push(job);
113113
}
114114
const subJob = job.addSubJob(subJobData);
115115
return subJob;

0 commit comments

Comments
 (0)