Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Embedded Genesys UI
Commits
870ee999
Commit
870ee999
authored
Nov 24, 2020
by
Matija Obreza
Browse files
Search form: bootstrap inline form classnames
parent
edd932aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/accession/AccessionFilters.tsx
View file @
870ee999
...
...
@@ -20,12 +20,12 @@ export function AccessionFilters(props: IAccessionFilters) {
};
return
(
<
form
onSubmit
=
{
handleSubmit
}
>
<
label
>
Full text search
<
input
name
=
"full-text-search"
type
=
"text"
value
=
{
text
}
onChange
=
{
onInputChange
}
/>
</
label
>
<
button
type
=
"submit"
>
Submit
</
button
>
<
form
className
=
"form-inline mb-4"
onSubmit
=
{
handleSubmit
}
>
<
div
className
=
"form-group mx-sm-2"
>
<
label
className
=
"mr-2"
>
Full text search
</
label
>
<
input
name
=
"full-text-search"
type
=
"text"
className
=
"form-control"
value
=
{
text
}
onChange
=
{
onInputChange
}
/>
</
div
>
<
button
className
=
"btn btn-primary"
type
=
"submit"
>
Submit
</
button
>
</
form
>
);
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment