Add aria-label to entity filters
Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
@@ -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)}
|
||||
|
||||
Reference in New Issue
Block a user