Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
VILLASweb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
2
Merge Requests
2
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ACS
P
Public
VILLASframework
VILLASweb
Commits
15e3f041
Commit
15e3f041
authored
Apr 07, 2020
by
Sonja Happ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove sizing parameters from number input widget (works on
#193
)
parent
2c77cc46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/widget/widgets/input.js
src/widget/widgets/input.js
+2
-2
No files found.
src/widget/widgets/input.js
View file @
15e3f041
...
...
@@ -78,10 +78,10 @@ class WidgetInput extends Component {
<
div
className
=
"
number-input-widget full
"
>
<
Form
componentclass
=
"
fieldset
"
horizontal
=
"
true
"
>
<
FormGroup
>
<
Col
as
=
{
FormLabel
}
xs
=
{
3
}
>
<
Col
as
=
{
FormLabel
}
>
{
this
.
props
.
widget
.
name
}
<
/Col
>
<
Col
xs
=
{
9
}
>
<
Col
>
<
InputGroup
>
<
FormControl
type
=
"
number
"
step
=
"
any
"
disabled
=
{
this
.
props
.
editing
}
onKeyPress
=
{
(
e
)
=>
this
.
handleKeyPress
(
e
)
}
onBlur
=
{
(
e
)
=>
this
.
valueChanged
(
this
.
state
.
value
)
}
onChange
=
{
(
e
)
=>
this
.
valueIsChanging
(
e
.
target
.
value
)
}
placeholder
=
"
Enter value
"
value
=
{
this
.
state
.
value
}
/
>
<
InputGroup
.
Append
>
...
...
Write
Preview
Markdown
is supported
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