Skip to content

Commit

Permalink
fixed: missing dropdown_year CSS class in YearsDropdown (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwolfert committed Jun 12, 2022
1 parent 298ef27 commit 755392d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -60,8 +60,8 @@ export function YearsDropdown(props: YearsDropdownProps): JSX.Element {
return (
<DropdownComponent
aria-label={labelYearDropdown()}
className={classNames.dropdown_month}
style={styles.dropdown_month}
className={classNames.dropdown_year}
style={styles.dropdown_year}
onChange={handleChange}
value={displayMonth.getFullYear()}
caption={formatYearCaption(displayMonth, { locale })}
Expand Down

0 comments on commit 755392d

Please sign in to comment.