From cd6947ef2084f6752168d031b04c69cda72f9950 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Sat, 2 Apr 2022 20:11:34 -0700 Subject: [PATCH] (ui): Rename TasksTable to TasksTableContainer --- ui/src/components/{TasksTable.tsx => TasksTableContainer.tsx} | 4 ++-- ui/src/views/TasksView.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename ui/src/components/{TasksTable.tsx => TasksTableContainer.tsx} (98%) diff --git a/ui/src/components/TasksTable.tsx b/ui/src/components/TasksTableContainer.tsx similarity index 98% rename from ui/src/components/TasksTable.tsx rename to ui/src/components/TasksTableContainer.tsx index 028df4c..19d356c 100644 --- a/ui/src/components/TasksTable.tsx +++ b/ui/src/components/TasksTableContainer.tsx @@ -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(); @@ -259,4 +259,4 @@ function TasksTable(props: Props & ReduxProps) { ); } -export default connector(TasksTable); +export default connector(TasksTableContainer); diff --git a/ui/src/views/TasksView.tsx b/ui/src/views/TasksView.tsx index 7a9e761..842a20a 100644 --- a/ui/src/views/TasksView.tsx +++ b/ui/src/views/TasksView.tsx @@ -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"; @@ -70,7 +70,7 @@ function TasksView(props: ConnectedProps) { - +