Skip to content

Commit 7fcb1c3

Browse files
committed
#3921 let TaskFormModal render multiline
1 parent cf583b4 commit 7fcb1c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/frontend/src/pages/ProjectDetailPage/ProjectViewContainer/TaskList

src/frontend/src/pages/ProjectDetailPage/ProjectViewContainer/TaskList/TaskModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const TaskModal: React.FC<TaskModalProps> = ({ task, teams, modalShow, onHide, o
7373
<Grid item xs={12} md={6}>
7474
<Typography fontWeight={'bold'}>Notes:</Typography>
7575
<Box sx={{ height: 'auto', overflow: 'auto' }}>
76-
<Typography>{task.notes}</Typography>
76+
<Typography sx={{ whiteSpace: 'pre-wrap' }}>{task.notes}</Typography>
7777
</Box>
7878
</Grid>
7979
</Grid>

0 commit comments

Comments
 (0)