Show only standalone tasks in task pages (#925)
This commit is contained in:
@@ -49,6 +49,7 @@ function TaskHistory() {
|
|||||||
params.append("task_status", "terminated");
|
params.append("task_status", "terminated");
|
||||||
params.append("task_status", "timed_out");
|
params.append("task_status", "timed_out");
|
||||||
params.append("task_status", "canceled");
|
params.append("task_status", "canceled");
|
||||||
|
params.append("only_standalone_tasks", "true");
|
||||||
|
|
||||||
return client
|
return client
|
||||||
.get("/tasks", {
|
.get("/tasks", {
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ function QueuedTasks() {
|
|||||||
.get("/tasks", {
|
.get("/tasks", {
|
||||||
params: {
|
params: {
|
||||||
task_status: "queued",
|
task_status: "queued",
|
||||||
|
only_standalone_tasks: "true",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then((response) => response.data);
|
.then((response) => response.data);
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ function RunningTasks() {
|
|||||||
.get("/tasks", {
|
.get("/tasks", {
|
||||||
params: {
|
params: {
|
||||||
task_status: "running",
|
task_status: "running",
|
||||||
|
only_standalone_tasks: "true",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then((response) => response.data);
|
.then((response) => response.data);
|
||||||
|
|||||||
Reference in New Issue
Block a user