Minor fixes

This commit is contained in:
Ken Hibino
2021-01-29 22:25:01 -08:00
parent 747ff21218
commit 30f64efd09
7 changed files with 47 additions and 26 deletions

View File

@@ -52,23 +52,12 @@ const useStyles = makeStyles((theme) => ({
stickyHeaderCell: {
background: theme.palette.background.paper,
},
alert: {
borderTopLeftRadius: 0,
borderTopRightRadius: 0,
},
}));
const useRowStyles = makeStyles({
root: {
"& > *": {
borderBottom: "unset",
},
},
actionCell: {
width: "96px",
},
activeActionCell: {
display: "flex",
justifyContent: "space-between",
},
});
function mapStateToProps(state: AppState) {
return {
loading: state.tasks.archivedTasks.loading,
@@ -159,7 +148,7 @@ function ArchivedTasksTable(props: Props & ReduxProps) {
if (props.error.length > 0) {
return (
<Alert severity="error">
<Alert severity="error" className={classes.alert}>
<AlertTitle>Error</AlertTitle>
{props.error}
</Alert>
@@ -167,7 +156,7 @@ function ArchivedTasksTable(props: Props & ReduxProps) {
}
if (props.tasks.length === 0) {
return (
<Alert severity="info">
<Alert severity="info" className={classes.alert}>
<AlertTitle>Info</AlertTitle>
No archived tasks at this time.
</Alert>
@@ -301,6 +290,21 @@ function ArchivedTasksTable(props: Props & ReduxProps) {
);
}
const useRowStyles = makeStyles({
root: {
"& > *": {
borderBottom: "unset",
},
},
actionCell: {
width: "96px",
},
activeActionCell: {
display: "flex",
justifyContent: "space-between",
},
});
interface RowProps {
task: ArchivedTaskExtended;
isSelected: boolean;