File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ class ApiPropertyFormItem extends ValidatableMixin(LitElement) {
162
162
?legacy ="${ legacy } "
163
163
data-type ="input "
164
164
@input ="${ this . _inputHandler } "
165
+ @change ="${ this . _inputChangeHandler } "
165
166
invalidmessage ="${ `${ name } did not pass validation` } ">
166
167
< label slot ="label "> ${ model . schema . inputLabel } </ label >
167
168
</ anypoint-input > ` ;
@@ -606,6 +607,11 @@ class ApiPropertyFormItem extends ValidatableMixin(LitElement) {
606
607
this . value = e . target . value ;
607
608
}
608
609
610
+ _inputChangeHandler ( e ) {
611
+ // in FF input event won't fire for number type and when using arrow up/down.
612
+ this . value = e . target . value ;
613
+ }
614
+
609
615
_arrayValueHandler ( e ) {
610
616
const index = Number ( e . target . dataset . index ) ;
611
617
if ( index !== index ) {
You can’t perform that action at this time.
0 commit comments