(ui): Use TasksTable component for aggregating tasks

This commit is contained in:
Ken Hibino
2022-04-03 15:58:49 -07:00
parent c22c0206d7
commit 7e0ae2b4a6
4 changed files with 206 additions and 434 deletions

View File

@@ -12,7 +12,7 @@ import ScheduledTasksTable from "./ScheduledTasksTable";
import RetryTasksTable from "./RetryTasksTable";
import ArchivedTasksTable from "./ArchivedTasksTable";
import CompletedTasksTable from "./CompletedTasksTable";
import AggregatingTasksTable from "./AggregatingTasksTable";
import AggregatingTasksTableContainer from "./AggregatingTasksTableContainer";
import { useHistory } from "react-router-dom";
import { queueDetailsPath, taskDetailsPath } from "../paths";
import { QueueInfo } from "../reducers/queuesReducer";
@@ -229,7 +229,7 @@ function TasksTableContainer(props: Props & ReduxProps) {
/>
</TabPanel>
<TabPanel value="aggregating" selected={props.selected}>
<AggregatingTasksTable queue={props.queue} />
<AggregatingTasksTableContainer queue={props.queue} />
</TabPanel>
<TabPanel value="scheduled" selected={props.selected}>
<ScheduledTasksTable