diff --git a/src/components/pages/ApplicantProfile.js b/src/components/pages/ApplicantProfile.js index 913f609569416770827f76abbd0e99aa04c22d88..e8614de71f67626b36c4d2f100089325482c13e6 100644 --- a/src/components/pages/ApplicantProfile.js +++ b/src/components/pages/ApplicantProfile.js @@ -23,11 +23,17 @@ class ApplicantProfile extends Component { <Item.Description> <Container textAlign='justified' style={{ padding: '1em' }}> <Header as='h3'>MagamrĂłl, eddigi tevĂŠkenysĂŠgem:</Header> - <p>{motivation_about}</p> + <p>{motivation_about + ?.split ('\n').map ((item, i) => <div key={i}>{item}</div>)} + </p> <Header as='h3'>Szakmai motivĂĄciĂł:</Header> - <p>{motivation_profession}</p> + <p>{motivation_profession + ?.split ('\n').map ((item, i) => <div key={i}>{item}</div>)} + </p> <Header as='h3'>Feladatok megoldĂĄsa:</Header> - <p>{motivation_exercise}</p> + <p>{motivation_exercise + ?.split ('\n').map ((item, i) => <div key={i}>{item}</div>)} + </p> </Container> <Container textAlign='center' style={{ padding: '1em' }}> <Header as='h3'>StĂĄtusz:</Header>