(ui): Fix inconsistent data shown in AggregatingTasks view

This commit is contained in:
Ken Hibino
2022-04-01 11:57:00 -07:00
parent 9de7f054bc
commit d0a8b6b691
6 changed files with 36 additions and 8 deletions

View File

@@ -59,6 +59,7 @@ import {
deleteAggregatingTask,
runAggregatingTask,
archiveAggregatingTask,
ListAggregatingTasksResponse,
} from "../api";
import { Dispatch } from "redux";
import { toErrorString, toErrorStringWithHttpStatus } from "../utils";
@@ -418,7 +419,7 @@ interface ListAggregatingTasksSuccessAction {
type: typeof LIST_AGGREGATING_TASKS_SUCCESS;
queue: string;
group: string;
payload: ListTasksResponse;
payload: ListAggregatingTasksResponse;
}
interface ListAggregatingTasksErrorAction {