We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eabaccc commit 00eea74Copy full SHA for 00eea74
1 file changed
src/frontend/src/pages/ChangeRequestDetailPage/StandardDetails.tsx
@@ -28,7 +28,8 @@ const StandardDetails: React.FC<StandardDetailsProps> = ({ cr }: StandardDetails
28
{cr.why.map((ele: ChangeRequestExplanation, idx: number) => (
29
<Box key={'CRExplanation' + idx} display="flex">
30
<Typography sx={style}>{ele.type + ' '}</Typography>
31
- <Typography sx={{ ml: '5px' }}>{' - ' + ele.explain}</Typography>
+ <Typography mx={'10px'}>{' - '}</Typography>
32
+ <Typography>{ele.explain}</Typography>
33
</Box>
34
))}
35
</InfoBlock>
0 commit comments