mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-12-23 03:23:48 +01:00
cast number as string
This commit is contained in:
parent
137f95fdba
commit
89e67882a0
@ -52,7 +52,7 @@ export const NumberField = (props, context) => (
|
||||
icon={context.advancedFields.includes(props.name) && <RefreshIcon onTouchTap={() => context.onChange(props.name, null)} />}
|
||||
floatingLabelStyle={{ color: context.advancedFields.includes(props.name) ? blue500 : grey500 }}
|
||||
disabled={context.disabled}
|
||||
value={_.get(context, props.name)}
|
||||
value={_.get(context, props.name.toString())}
|
||||
onChange={(event, value) => {
|
||||
value = parseFloat(value);
|
||||
if (props.min) value = Math.max(value, props.min);
|
||||
|
Loading…
Reference in New Issue
Block a user