CSR-886: update span to div

This commit is contained in:
Adam Caouette 2023-03-15 14:07:23 -04:00
parent 24aecae149
commit e97e82c7a7

View file

@ -2,7 +2,7 @@
<div class="date-picker" :class="calendarViewDirection"> <div class="date-picker" :class="calendarViewDirection">
<fieldset v-if="months"> <fieldset v-if="months">
<legend class="sr-only">Date Picker</legend> <legend class="sr-only">Date Picker</legend>
<span <div
v-for="month in months" v-for="month in months"
:key="`${month.monthLabel}-${month.yearNum.toString()}-${months.length}`"> :key="`${month.monthLabel}-${month.yearNum.toString()}-${months.length}`">
<div <div
@ -46,7 +46,7 @@
</label> </label>
</div> </div>
</div> </div>
</span> </div>
</fieldset> </fieldset>
<button <button
v-if="calendarViewDirection === 'future'" v-if="calendarViewDirection === 'future'"