#119 fix bug on tblcell inside another tblcell

parent ba6b1f25
......@@ -19,6 +19,7 @@ export default function BasicSelect({value,label,name,onChange,task,items}) {
labelId="demo-simple-select-label"
id="demo-simple-select"
value={value}
defaultValue=''
label={label}
name={name}
onChange={(e) => onChange(e, task)}
......@@ -27,7 +28,8 @@ export default function BasicSelect({value,label,name,onChange,task,items}) {
<MenuItem key={index} value={item.value}>
{item.title}
</MenuItem>
)):null}
)
):""}
</Select>
</FormControl>
</Box>
......
......@@ -192,7 +192,7 @@ const TableRowTask= ({
onChange={onDateChange}
user={user}
/> */}
<TableCell>
{/* <TableCell> */}
<Tooltip title="Перейти в календарь">
<IconButton
onClick={(id) => { deleteHandle(task.id);}}
......@@ -200,7 +200,7 @@ const TableRowTask= ({
<CalendarMonthIcon />
</IconButton>
</Tooltip>
</TableCell>
{/* </TableCell> */}
</TableCell>
) : (
......
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