Merge pull request #640 from Safelite/CSR-437-year-button-aria-fix

CSR-437 accessibility fix
This commit is contained in:
bmauger 2022-08-05 11:24:10 -04:00 committed by GitHub
commit 56c443ad1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -38,7 +38,7 @@
:class="[suppressError ? 'alertError' : '']" :class="[suppressError ? 'alertError' : '']"
:valueToLogType="valueToLogType" :valueToLogType="valueToLogType"
/> />
<!-- For nested questions --> <!-- For nested questions -->
<transition name="fade" mode="out-in"> <transition name="fade" mode="out-in">
<div v-if="typeof selectedValues == 'string' && selectedValues == answer.Name"> <div v-if="typeof selectedValues == 'string' && selectedValues == answer.Name">
<slot></slot> <slot></slot>

View file

@ -16,6 +16,7 @@
:aria-required="isRequired" :aria-required="isRequired"
v-model="checkValue" v-model="checkValue"
@change="handleInputChange" @change="handleInputChange"
:aria-label="value"
> >
<label <label
tabindex="-1" tabindex="-1"