Skip to content

Commit

Permalink
adding aria label
Browse files Browse the repository at this point in the history
  • Loading branch information
selfcontained committed Sep 14, 2023
1 parent eaa76d5 commit 8b8b7de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/dashboard/src/components/RepositoryFinder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ export default function RepositoryFinder(props: RepositoryFinderProps) {
return {
id: repo.url,
element: (
<div className="flex flex-row items-center overflow-hidden">
<div
className="flex flex-row items-center overflow-hidden"
aria-label={`${repo.projectId ? "Project" : "Repo"}: ${repo.url}`}
>
<span className={"pr-3"}>
<RepositoryIcon
className={classNames(
Expand Down

0 comments on commit 8b8b7de

Please sign in to comment.