aboutsummaryrefslogtreecommitdiff
path: root/src/settings/components/form
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/components/form')
-rw-r--r--src/settings/components/form/BlacklistForm.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/components/form/BlacklistForm.tsx b/src/settings/components/form/BlacklistForm.tsx
index 4d794f4..d301f2c 100644
--- a/src/settings/components/form/BlacklistForm.tsx
+++ b/src/settings/components/form/BlacklistForm.tsx
@@ -40,13 +40,13 @@ class BlacklistForm extends React.Component<Props> {
render() {
return (
<>
- <Grid>
+ <Grid role="list">
{this.props.value.items.map((item, index) => {
if (item.partial) {
return null;
}
return (
- <GridRow key={index}>
+ <GridRow role="listitem" key={index}>
<GridCell>
<Input
data-index={index}