Skip to content

Commit 00eea74

Browse files
committed
#1650 - fix some more tests
1 parent eabaccc commit 00eea74

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/frontend/src/pages/ChangeRequestDetailPage/StandardDetails.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ const StandardDetails: React.FC<StandardDetailsProps> = ({ cr }: StandardDetails
2828
{cr.why.map((ele: ChangeRequestExplanation, idx: number) => (
2929
<Box key={'CRExplanation' + idx} display="flex">
3030
<Typography sx={style}>{ele.type + ' '}</Typography>
31-
<Typography sx={{ ml: '5px' }}>{' - ' + ele.explain}</Typography>
31+
<Typography mx={'10px'}>{' - '}</Typography>
32+
<Typography>{ele.explain}</Typography>
3233
</Box>
3334
))}
3435
</InfoBlock>

0 commit comments

Comments
 (0)