mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-23 00:39:47 +01:00
Clean up html structure (#1869)
Fix different html syntax errors to improve a11y.
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user