Skip to content

Commit

Permalink
fix(core): fix input min prop type
Browse files Browse the repository at this point in the history
  • Loading branch information
Sukaato committed Jan 4, 2025
1 parent 2305e14 commit 61cbae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class Input implements ComponentInterface, FormAssociatedInterface {
*
* @config
*/
@Prop({ mutable: true }) min?: number;
@Prop({ mutable: true }) min?: number | string;

/**
* The maximum value, which must not be less than its minimum (min attribute) value.
Expand Down

0 comments on commit 61cbae2

Please sign in to comment.