Skip to content

Commit 959029e

Browse files
authored
fix(month-view): add missing a11y attributes
1 parent 5fc9ef7 commit 959029e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

projects/angular-calendar/src/modules/month/calendar-month-view.component.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ export interface CalendarMonthViewEventTimesChangedEvent<
6666
<div
6767
*ngFor="let rowIndex of view.rowOffsets; trackBy: trackByRowOffset"
6868
>
69-
<div class="cal-cell-row">
69+
<div role="row" class="cal-cell-row">
7070
<mwl-calendar-month-cell
71+
role="gridcell"
7172
*ngFor="
7273
let day of view.days
7374
| slice: rowIndex:rowIndex + view.totalDaysVisibleInWeek;

0 commit comments

Comments
 (0)