🐛 typo dans le CSS et attribut inutile

pull/206/head
Mael 2018-03-21 16:21:18 +01:00 committed by Laurent Bossavit
parent 663182651f
commit adc8382a8c
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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 = ({