Skip to content

Commit

Permalink
Merge pull request #6398 from nivivive/pr6397
Browse files Browse the repository at this point in the history
Fix #6397: Calendar inputClassName missing
  • Loading branch information
gucal authored Apr 16, 2024
2 parents 4e5ea9b + 6b8ea43 commit 48d5fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/calendar/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4036,7 +4036,7 @@ export const Calendar = React.memo(
name={props.name}
type="text"
role="combobox"
className={(props.inputClassName, cx('input', { context }))}
className={classNames(props.inputClassName, cx('input', { context }))}
style={props.inputStyle}
readOnly={props.readOnlyInput}
disabled={props.disabled}
Expand Down

0 comments on commit 48d5fbd

Please sign in to comment.