From e9d14926e34881aae61a8def810a9d4ec9666a14 Mon Sep 17 00:00:00 2001
From: Bruno Windels <brunow@element.io>
Date: Tue, 24 Nov 2020 12:29:38 +0100
Subject: [PATCH] add a11y label to install buttons

---
 src/components/ClientTile.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/components/ClientTile.tsx b/src/components/ClientTile.tsx
index 5ec1311..9464e61 100644
--- a/src/components/ClientTile.tsx
+++ b/src/components/ClientTile.tsx
@@ -72,6 +72,7 @@ const ClientTile: React.FC<IProps> = ({ client, link }: IProps) => {
         installButtons = <p>{matchingInstallLinks.map((installLink) => {
             return <a
                 rel="noopener noreferrer"
+                aria-label={installLink.description}
                 key={installLink.channelId}
                 href={installLink.createInstallURL(link)}
                 className="installLink"
-- 
GitLab