Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
form-creator-ui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simmctic
form-creator
form-creator-ui
Merge requests
!19
Resolve "Criar tela inicial (lista de formulários)"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Criar tela inicial (lista de formulários)"
2-tela-inicial
into
development
Overview
0
Commits
1
Pipelines
0
Changes
13
Merged
Resolve "Criar tela inicial (lista de formulários)"
Richard Fernando Heise Ferreira
requested to merge
2-tela-inicial
into
development
Jun 13, 2020
Overview
0
Commits
1
Pipelines
0
Changes
13
Closes
#2 (closed)
0
0
Merge request reports
Compare
development
version 1
24909b35
Jun 13, 2020
development (base)
and
latest version
latest version
24909b35
1 commit,
Jun 13, 2020
version 1
24909b35
47 commits,
Jun 13, 2020
13 files
+
577
−
130
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
src/components/fieldsCreateForm/FormFieldSubform.js
+
4
−
5
View file @ 24909b35
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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