Client - add missing labels

This commit is contained in:
Sam
2023-07-13 13:26:38 +02:00
parent 3f672b5e90
commit d7a9aae45e
6 changed files with 20 additions and 0 deletions

View File

@ -1,6 +1,7 @@
<template>
<div class="dropdown-wrapper">
<button
:aria-label="buttonLabel"
:aria-expanded="isOpen"
class="dropdown-selector transparent"
@click="toggleDropdown"
@ -32,6 +33,7 @@
interface Props {
options: TDropdownOptions
selected: string
buttonLabel: string
}
const props = defineProps<Props>()