[#7646] fixed number field min/max input value normalization

This commit is contained in:
Gani Georgiev
2026-04-19 15:27:13 +03:00
parent 61ce760e0f
commit ba554b8470
6 changed files with 24 additions and 11 deletions

View File

@@ -25,7 +25,7 @@ export function input(props) {
min: () => props.field.min,
max: () => props.field.max,
value: () => props.record[props.field.name] || "",
oninput: (e) => (props.record[props.field.name] = Number(e.target.value)),
oninput: (e) => props.record[props.field.name] = Number(e.target.value),
}),
),
() => {