🐛 typo dans le CSS et attribut inutile
parent
663182651f
commit
adc8382a8c
|
@ -88,7 +88,7 @@
|
|||
border-bottom: 1px dashed #ffffff91}
|
||||
|
||||
#targetSelection .attractClick,
|
||||
#targetSelection input[type='numeric'] {
|
||||
#targetSelection input[type='number'] {
|
||||
width: 5em !important;
|
||||
display: inline-block;
|
||||
height: 1.5em;
|
||||
|
|
|
@ -165,7 +165,7 @@ let validate = buildValidationFunction(formValueTypes['euros'])
|
|||
let InputComponent = ({ input, meta: { dirty, error } }) => (
|
||||
<span>
|
||||
{dirty && error && <span className="input-error">{error}</span>}
|
||||
<input type="number" {...input} autoFocus inputMethod="numeric" />
|
||||
<input type="number" {...input} autoFocus />
|
||||
</span>
|
||||
)
|
||||
let TargetOrInputValue = ({
|
||||
|
|
Loading…
Reference in New Issue