Clean up html structure (#1869)

Fix different html syntax errors to improve a11y.
This commit is contained in:
Eduard Heimbuch
2021-11-29 13:57:05 +01:00
committed by GitHub
parent 542a5aac59
commit 5eb1d9cd22
19 changed files with 105 additions and 708 deletions

View File

@@ -52,7 +52,7 @@ const OverviewPageActions: FC<Props> = ({
groupSelected,
label,
testId,
searchPlaceholder,
searchPlaceholder
}) => {
const history = useHistory();
const location = useLocation();
@@ -63,7 +63,7 @@ const OverviewPageActions: FC<Props> = ({
<div className="column is-flex">
<Select
className="is-fullwidth"
options={groups.map((g) => ({ value: g, label: g }))}
options={groups.map(g => ({ value: g, label: g }))}
value={currentGroup}
onChange={groupSelected}
/>