Skip to content

Commit

Permalink
#8209 - fix vue dropdown and tagbox
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed May 16, 2024
1 parent b2865da commit 6e6af80
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@
:model="question.dropdownListModel.popupModel"
></sv-popup>
<div
disabled
v-else
:id="question.inputId"
:aria-label="question.a11y_input_ariaLabel"
Expand Down
2 changes: 1 addition & 1 deletion src/vue/components/tagbox/tagbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</div>
</div>
<sv-popup v-if="!question.isReadOnly" :model="model.popupModel"></sv-popup>
<div disabled v-else :id="question.inputId"
<div v-else :id="question.inputId"
:aria-label="question.a11y_input_ariaLabel"
:aria-labelledby="question.a11y_input_ariaLabelledBy"
:aria-describedby="question.a11y_input_ariaDescribedBy"
Expand Down

0 comments on commit 6e6af80

Please sign in to comment.