fix(widget-number): use number instead of integer in schema (#3931)

This commit is contained in:
Erez Rokah 2020-06-21 10:54:53 +03:00 committed by GitHub
parent 8d2d5d5f2c
commit 3a53873469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
export default {
properties: {
step: { type: 'integer' },
step: { type: 'number' },
valueType: { type: 'string' },
min: { type: 'integer' },
max: { type: 'integer' },
min: { type: 'number' },
max: { type: 'number' },
},
};