We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ce4921 commit bf14cc5Copy full SHA for bf14cc5
src/components/Select.vue
@@ -271,7 +271,7 @@
271
272
<span class="selected-tag" v-for="option in valueAsArray" v-bind:key="option.index">
273
{{ getOptionLabel(option) }}
274
- <button v-if="multiple" @click="deselect(option)" type="button" class="close">
+ <button v-if="multiple" @click="deselect(option)" type="button" class="close" aria-label="Remove option">
275
<span aria-hidden="true">×</span>
276
</button>
277
</span>
@@ -292,6 +292,7 @@
292
:readonly="!searchable"
293
:style="{ width: isValueEmpty ? '100%' : 'auto' }"
294
:id="inputId"
295
+ aria-label="Search for option"
296
>
297
298
<i v-if="!noDrop" ref="openIndicator" role="presentation" class="open-indicator"></i>
0 commit comments