Skip to content

Commit

Permalink
fix negative number fields
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Dec 5, 2023
1 parent b98d251 commit bffd75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/FormInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const props = withDefaults(
required: false,
description: undefined,
type: 'text',
min: undefined,
min: 0,
disabled: false,
prefix: undefined,
placeholder: undefined,
Expand Down

0 comments on commit bffd75f

Please sign in to comment.