Skip to content

Commit

Permalink
Merge 5ca45ce into c9ab28f
Browse files Browse the repository at this point in the history
  • Loading branch information
oigewan committed Mar 7, 2017
2 parents c9ab28f + 5ca45ce commit 472ecd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Month.js
Expand Up @@ -31,7 +31,7 @@ export default function Month({
};
const weeks = getWeekArray(month, firstDayOfWeek, fixedWeeks);
return (
<div className={ classNames.month }>
<div className={ classNames.month } role="grid">
{React.cloneElement(captionElement, captionProps)}
<Weekdays
classNames={ classNames }
Expand All @@ -42,7 +42,7 @@ export default function Month({
localeUtils={ localeUtils }
weekdayElement={ weekdayElement }
/>
<div className={ classNames.body } role="grid">
<div className={ classNames.body } role="rowgroup">
{
weeks.map((week, j) =>
<div key={ j } className={ classNames.week } role="gridcell">
Expand Down
2 changes: 1 addition & 1 deletion src/Weekday.js
Expand Up @@ -23,7 +23,7 @@ export default function Weekday({
}

return (
<div className={ className }>
<div className={ className } role="columnheader">
<abbr title={ title }>
{content}
</abbr>
Expand Down
2 changes: 1 addition & 1 deletion src/Weekdays.js
Expand Up @@ -28,7 +28,7 @@ export default function Weekdays({

return (
<div className={ classNames.weekdays } role="rowgroup">
<div className={ classNames.weekdaysRow } role="columnheader">
<div className={ classNames.weekdaysRow } role="row">
{ days }
</div>
</div>
Expand Down

0 comments on commit 472ecd2

Please sign in to comment.