diff --git a/src/components/ActionInput/ActionInput.vue b/src/components/ActionInput/ActionInput.vue index 7d01150e17..1b4cebf7c1 100644 --- a/src/components/ActionInput/ActionInput.vue +++ b/src/components/ActionInput/ActionInput.vue @@ -82,6 +82,7 @@ For the multiselect component, all events will be passed through. Please see the :value="value" :placeholder="text" :disabled="disabled" + :aria-label="ariaLabel" v-bind="$attrs" :class="{ focusable: isFocusable }" class="action-input__input" @@ -160,6 +161,13 @@ export default { type: Boolean, default: false, }, + /** + * aria-label attribute of the input field + */ + ariaLabel: { + type: String, + default: '', + }, }, computed: {