()
| 490 | } |
| 491 | |
| 492 | populateDescription() { |
| 493 | return ( |
| 494 | <MKBox px={6} py={3} textAlign="left"> |
| 495 | {this.state.description.map((description, i) => { |
| 496 | return ( |
| 497 | <MKTypography component="div" variant="body2" mb={1} key={i}> |
| 498 | <div dangerouslySetInnerHTML={{ __html: i + 1 + ". " + description }} /> |
| 499 | </MKTypography> |
| 500 | ); |
| 501 | })} |
| 502 | </MKBox> |
| 503 | ); |
| 504 | } |
| 505 | |
| 506 | populateOptions() { |
| 507 | var options = []; |