mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
fix: Number input defaults to 0 not allowing to have arbitrary precision (#10021)
This commit is contained in:
parent
7db16561dc
commit
e4e66ab7da
|
@ -14,7 +14,7 @@ type InputNumberProps = {
|
||||||
const props = withDefaults(defineProps<InputNumberProps>(), {
|
const props = withDefaults(defineProps<InputNumberProps>(), {
|
||||||
size: undefined,
|
size: undefined,
|
||||||
step: 1,
|
step: 1,
|
||||||
precision: 0,
|
precision: undefined,
|
||||||
min: -Infinity,
|
min: -Infinity,
|
||||||
max: Infinity,
|
max: Infinity,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue