appeal update case

This commit is contained in:
robert.bond@test.gov.wales
2021-09-14 12:23:43 +01:00
parent 1208848d82
commit b7815c112e
3 changed files with 57 additions and 41 deletions
+6 -4
View File
@@ -432,14 +432,15 @@ export function NumericField(props) {
</label>
<Field
name={props.name}
id={"int_" + props.name}
id={props.name}
component="input"
type="text"
type="number"
className="govuk-input govuk-input--width-20"
spellCheck="false"
//aria-describedby="account-number-hint"
pattern="[0-9]*"
inputMode="numeric"
parse={Number}
/>
</div>
);
@@ -455,14 +456,15 @@ export function DecimalField(props) {
</label>
<Field
name={props.name}
id={"dec_" + props.name}
id={props.name}
component="input"
type="text"
type="number"
className="govuk-input govuk-input--width-10"
spellCheck="false"
//aria-describedby="account-number-hint"
pattern="[0-9]*"
inputMode="numeric"
parse={Number}
/>
</div>
);