added back the task viewer on the bin page, fixed up some more styling
This commit is contained in:
parent
5c6be7c850
commit
9105b4be3a
4 changed files with 18 additions and 12 deletions
|
|
@ -19,6 +19,7 @@ import { useSnackbar, useUserAPI } from "hooks";
|
|||
import { useEffect } from "react";
|
||||
import { Task, teamScope, User } from "models";
|
||||
import ColourPicker from "common/ColourPicker";
|
||||
import ResponsiveDialog from "common/ResponsiveDialog";
|
||||
|
||||
interface Props {
|
||||
open: boolean;
|
||||
|
|
@ -159,7 +160,7 @@ export default function TaskSettings(props: Props) {
|
|||
};
|
||||
|
||||
return (
|
||||
<Dialog open={props.open} onClose={closeDialog}>
|
||||
<ResponsiveDialog open={props.open} onClose={closeDialog}>
|
||||
<DialogTitle id="form-dialog-title">New Task</DialogTitle>
|
||||
<DialogContent>
|
||||
<TextField
|
||||
|
|
@ -346,6 +347,6 @@ export default function TaskSettings(props: Props) {
|
|||
</Button>
|
||||
)}
|
||||
</DialogActions>
|
||||
</Dialog>
|
||||
</ResponsiveDialog>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue