Skip to content

Commit

Permalink
fix: changed aria-labels on weekday list, only on ul container now
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
  • Loading branch information
emoral435 committed Feb 19, 2024
1 parent 0e2aecc commit 2cbffdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CalendarAvailability.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<ul class="week-day-container">
<ul class="week-day-container" aria-label="List of weekdays">
<template v-for="day in internalSlots">
<li :key="`day-label-${day.id}`" class="day-container" :aria-labelledby="day.displayName + '-label'">
<li :key="`day-label-${day.id}`" class="day-container">
<div class="label-weekday">
<span :id="day.displayName + '-label'">{{ day.displayName }}</span>
</div>
Expand Down

0 comments on commit 2cbffdf

Please sign in to comment.