Add aria-label to entity filters

Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
Philipp Hugenroth
2021-07-19 21:01:59 +02:00
committed by blam
parent e69445d676
commit 908858d9c7
3 changed files with 3 additions and 0 deletions
@@ -76,6 +76,7 @@ export const EntityLifecyclePicker = () => {
<Box pb={1} pt={1}>
<Typography variant="button">Lifecycle</Typography>
<Autocomplete<string>
aria-label="Lifecycle"
multiple
options={availableLifecycles}
value={selectedLifecycles}
@@ -81,6 +81,7 @@ export const EntityOwnerPicker = () => {
<Typography variant="button">Owner</Typography>
<Autocomplete<string>
multiple
aria-label="Owner"
options={availableOwners}
value={selectedOwners}
onChange={(_: object, value: string[]) => setSelectedOwners(value)}
@@ -73,6 +73,7 @@ export const EntityTagPicker = () => {
<Typography variant="button">Tags</Typography>
<Autocomplete<string>
multiple
aria-label="Tags"
options={availableTags}
value={selectedTags}
onChange={(_: object, value: string[]) => setSelectedTags(value)}