mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-31 15:50:40 +02:00
fix: Number input defaults to 0 not allowing to have arbitrary precision (#10021)
This commit is contained in:
@@ -14,7 +14,7 @@ type InputNumberProps = {
|
||||
const props = withDefaults(defineProps<InputNumberProps>(), {
|
||||
size: undefined,
|
||||
step: 1,
|
||||
precision: 0,
|
||||
precision: undefined,
|
||||
min: -Infinity,
|
||||
max: Infinity,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user