CSR-459: fix unit test
This commit is contained in:
parent
4cee1b10c5
commit
754cdddfb2
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@
|
|||
<div class="w-100 d-flex justify-content-center">
|
||||
<fieldset class="w-100" :class="getFieldSetClasses" :role="isMultiSelect ? 'group' : 'radiogroup'" :aria-labelledby="groupName ? groupName + '-radio-group' : ''">
|
||||
<legend class="sr-only" :data-focus-target="groupName" tabindex="-1">
|
||||
{{(isMultiSelect && answers.length > 1) ? 'Select one or more options below.' : 'Select an option below.' }}
|
||||
{{(isMultiSelect && answers && answers.length > 1) ? 'Select one or more options below.' : 'Select an option below.' }}
|
||||
</legend>
|
||||
<div :class="getComponentWrapperClasses">
|
||||
<component
|
||||
|
|
|
|||
Loading…
Reference in a new issue