Skip to content

Commit

Permalink
Use correct aria labels for Next Month/Year (#2069)
Browse files Browse the repository at this point in the history
Fixes #2067
  • Loading branch information
prymitive committed Mar 7, 2020
1 parent b33956b commit cf146ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/calendar.jsx
Expand Up @@ -468,8 +468,8 @@ export default class Calendar extends React.Component {
this.props.showMonthYearPicker || this.props.showQuarterYearPicker;

const {
nextMonthAriaLabel = "Previous Month",
nextYearAriaLabel = "Previous Year"
nextMonthAriaLabel = "Next Month",
nextYearAriaLabel = "Next Year"
} = this.props;

return (
Expand Down

0 comments on commit cf146ef

Please sign in to comment.