Skip to content
Snippets Groups Projects

Issue/20

Merged Richard Fernando Heise Ferreira requested to merge issue/20 into development
6 files
+ 105
41
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -100,7 +100,11 @@ function FormFieldCheckbox(props) {
@@ -100,7 +100,11 @@ function FormFieldCheckbox(props) {
const options = props.options.map((x, index) => {
const options = props.options.map((x, index) => {
return (
return (
<span>
<span>
<Typography className={classes.text} variant="h7">
<Typography
 
style={{ wordWrap: "break-word" }}
 
className={classes.text}
 
variant="h7"
 
>
{x.value}
{x.value}
</Typography>
</Typography>
<Checkbox onChange={() => handleArray(index)} />
<Checkbox onChange={() => handleArray(index)} />
@@ -117,10 +121,16 @@ function FormFieldCheckbox(props) {
@@ -117,10 +121,16 @@ function FormFieldCheckbox(props) {
<Paper className={classes.paper}>
<Paper className={classes.paper}>
<Grid container>
<Grid container>
<Grid item xs={12} className={classes.questionsGrid}>
<Grid item xs={12} className={classes.questionsGrid}>
<Typography className={classes.text} variant="h6">
<Typography
 
style={{ wordWrap: "break-word" }}
 
className={classes.text}
 
variant="h6"
 
>
{props.question}
{props.question}
</Typography>
</Typography>
<Typography variant="h8">{props.description}</Typography>
<Typography style={{ wordWrap: "break-word" }} variant="h8">
 
{props.description}
 
</Typography>
</Grid>
</Grid>
<Grid
<Grid
item
item
@@ -133,7 +143,12 @@ function FormFieldCheckbox(props) {
@@ -133,7 +143,12 @@ function FormFieldCheckbox(props) {
>
>
{options}
{options}
<div>
<div>
<Typography className={classes.validation}>{valid}</Typography>
<Typography
 
style={{ wordWrap: "break-word" }}
 
className={classes.validation}
 
>
 
{valid}
 
</Typography>
</div>
</div>
</Grid>
</Grid>
</Grid>
</Grid>
Loading