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", "timed_out");
|
||||
params.append("task_status", "canceled");
|
||||
params.append("only_standalone_tasks", "true");
|
||||
|
||||
return client
|
||||
.get("/tasks", {
|
||||
|
||||
@@ -26,6 +26,7 @@ function QueuedTasks() {
|
||||
.get("/tasks", {
|
||||
params: {
|
||||
task_status: "queued",
|
||||
only_standalone_tasks: "true",
|
||||
},
|
||||
})
|
||||
.then((response) => response.data);
|
||||
|
||||
@@ -26,6 +26,7 @@ function RunningTasks() {
|
||||
.get("/tasks", {
|
||||
params: {
|
||||
task_status: "running",
|
||||
only_standalone_tasks: "true",
|
||||
},
|
||||
})
|
||||
.then((response) => response.data);
|
||||
|
||||
Reference in New Issue
Block a user