Skip to content

Commit

Permalink
fix: type of minute in props disabledDateTime of DatePicker (#6233)
Browse files Browse the repository at this point in the history
  • Loading branch information
baohangxing committed Feb 7, 2023
1 parent f49437f commit bcc46d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/vc-picker/panels/TimePanel/TimeBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const TimeBody = defineComponent({
0,
59,
props.secondStep ?? 1,
mergedDisabledSeconds.value && mergedDisabledSeconds.value(originHour.value, minute),
mergedDisabledSeconds.value && mergedDisabledSeconds.value(originHour.value, minute.value),
),
);

Expand Down

0 comments on commit bcc46d1

Please sign in to comment.