Skip to content

Commit

Permalink
(ui): Rename TasksTable to TasksTableContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
hibiken committed Apr 12, 2022
1 parent bb26dda commit cd6947e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const useStyles = makeStyles((theme) => ({
},
}));

function TasksTable(props: Props & ReduxProps) {
function TasksTableContainer(props: Props & ReduxProps) {
const { currentStats } = props;
const classes = useStyles();
const history = useHistory();
Expand Down Expand Up @@ -259,4 +259,4 @@ function TasksTable(props: Props & ReduxProps) {
);
}

export default connector(TasksTable);
export default connector(TasksTableContainer);
4 changes: 2 additions & 2 deletions ui/src/views/TasksView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { connect, ConnectedProps } from "react-redux";
import { makeStyles } from "@material-ui/core/styles";
import Container from "@material-ui/core/Container";
import Grid from "@material-ui/core/Grid";
import TasksTable from "../components/TasksTable";
import TasksTableContainer from "../components/TasksTableContainer";
import QueueInfoBanner from "../components/QueueInfoBanner";
import QueueBreadCrumb from "../components/QueueBreadcrumb";
import { useParams } from "react-router-dom";
Expand Down Expand Up @@ -70,7 +70,7 @@ function TasksView(props: ConnectedProps<typeof connector>) {
<QueueInfoBanner qname={qname} />
</Grid>
<Grid item xs={12} className={classes.tasksTable}>
<TasksTable queue={qname} selected={selected} />
<TasksTableContainer queue={qname} selected={selected} />
</Grid>
</Grid>
</Container>
Expand Down

0 comments on commit cd6947e

Please sign in to comment.