Skip to content
Snippets Groups Projects

Resolve "Criar tela inicial (lista de formulários)"

Merged Richard Fernando Heise Ferreira requested to merge 2-tela-inicial into development
13 files
+ 577
130
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -67,7 +67,6 @@ function SubformSelect(props) {
const classes = useStyles();
/** Functions that handle the input changes to save it at the father component. */
const handleChange = (event) => {
console.log(event.target);
props.setSubformId(event.target.value, props.idq);
};
return (
@@ -96,10 +95,10 @@ function SubformSelect(props) {
</MenuItem>
))
) : (
<MenuItem key={0} value={0} disabled>
{"Você não tem formulários para usar aqui"}
</MenuItem>
)}
<MenuItem key={0} value={0} disabled>
{"Você não tem formulários para usar aqui"}
</MenuItem>
)}
</Select>
</FormControl>
);
Loading