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 7cfd1a2 commit 928fec3Copy full SHA for 928fec3
services/static-webserver/client/source/class/osparc/data/PollTask.js
@@ -30,8 +30,9 @@ qx.Class.define("osparc.data.PollTask", {
30
if (taskData && "task_id" in taskData) {
31
this.set({
32
taskId: taskData["task_id"],
33
+ taskName: taskData["task_name"] || "",
34
statusHref: taskData["status_href"],
- resultHref: taskData["result_href"]
35
+ resultHref: taskData["result_href"],
36
});
37
38
if ("abort_href" in taskData) {
@@ -64,6 +65,11 @@ qx.Class.define("osparc.data.PollTask", {
64
65
nullable: false
66
},
67
68
+ taskName: {
69
+ check: "String",
70
+ nullable: true
71
+ },
72
+
73
statusHref: {
74
check: "String",
75
0 commit comments