test

parent df34b85f
...@@ -13,7 +13,7 @@ const CustomTableCell = ({ ...@@ -13,7 +13,7 @@ const CustomTableCell = ({
placeholder, placeholder,
user, user,
}) => { }) => {
const styles = placeholder ? { width: "100%" } : { width: "auto" }; const styles = placeholder ? { width: "100%",padding:"1px"} : { width: "auto",padding:"1px"};
const divStyle = { const divStyle = {
display: "flex", display: "flex",
justifyContent: "space-between", justifyContent: "space-between",
...@@ -34,7 +34,7 @@ const CustomTableCell = ({ ...@@ -34,7 +34,7 @@ const CustomTableCell = ({
<TableCell <TableCell
onClick={(e) => (onModalOpen ? onModalOpen(e, task) : null)} onClick={(e) => (onModalOpen ? onModalOpen(e, task) : null)}
align="left" align="left"
// style={styles} style={styles}
> >
{(task.isEditMode && {(task.isEditMode &&
onChange && onChange &&
......
...@@ -295,6 +295,7 @@ console.log(tasks) ...@@ -295,6 +295,7 @@ console.log(tasks)
value: task.priority, value: task.priority,
user:user user:user
}} }}
sx={{width:"10px",backgroundColor:"black"}}
/> />
)} )}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment