Skip to content

Commit

Permalink
feat: add string type for min/max input for datetime picker
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetansenn committed Nov 27, 2023
1 parent dcecbcf commit 8a61fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/form/Input.props.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ export default {
default: false
},
min: {
type: Number,
type: [String, Number],
default: undefined
},
max: {
type: Number,
type: [String, Number],
default: undefined
},
step: {
Expand Down

0 comments on commit 8a61fc2

Please sign in to comment.