Removed role='application' for div inside button-question widget to fix accessibility issue

This commit is contained in:
Leah Schumann 2022-08-26 11:08:20 -04:00
parent 3ffbed7c7f
commit 33087d9c60

View file

@ -10,7 +10,7 @@
{{ questionText }}
{{(isMultiSelect && answers && answers.length > 1) ? 'Select one or more options below.' : 'Select an option below.' }}
</legend>
<div :class="getComponentLoopWrapperClasses" role="application">
<div :class="getComponentLoopWrapperClasses">
<div :class="getComponentWrapperClasses" v-for="answer in answers" :key="answer.Name ? answer.Name : answer">
<component
:is="buttonType"