test

parent df34b85f
......@@ -13,7 +13,7 @@ const CustomTableCell = ({
placeholder,
user,
}) => {
const styles = placeholder ? { width: "100%" } : { width: "auto" };
const styles = placeholder ? { width: "100%",padding:"1px"} : { width: "auto",padding:"1px"};
const divStyle = {
display: "flex",
justifyContent: "space-between",
......@@ -34,7 +34,7 @@ const CustomTableCell = ({
<TableCell
onClick={(e) => (onModalOpen ? onModalOpen(e, task) : null)}
align="left"
// style={styles}
style={styles}
>
{(task.isEditMode &&
onChange &&
......
......@@ -295,6 +295,7 @@ console.log(tasks)
value: task.priority,
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