Skip to content

Commit

Permalink
fix(VDatePickerControls): disable in disabled forms
Browse files Browse the repository at this point in the history
fixed #20543
  • Loading branch information
mtdvlpr authored and KaelWD committed Feb 17, 2025
1 parent 32e5747 commit 19cf7d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export const makeVDatePickerControlsProps = propsFactory({
default: undefined,
},
disabled: {
type: [Boolean, String, Array] as PropType<boolean | string | string[]>,
default: false,
type: [Boolean, String, Array] as PropType<boolean | string | string[] | null>,
default: null,
},
nextIcon: {
type: IconValue,
Expand Down

0 comments on commit 19cf7d4

Please sign in to comment.