We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33a5a4 commit 5954391Copy full SHA for 5954391
apps/site/components/Downloads/DownloadReleasesTable/DetailsButton.tsx
@@ -20,6 +20,15 @@ const DetailsButton: FC<DetailsButtonProps> = ({ versionData }) => {
20
return (
21
<LinkWithArrow
22
className="cursor-pointer"
23
+ role="button"
24
+ tabIndex={0}
25
+ aria-label={t('details')}
26
+ onKeyDown={e => {
27
+ if (e.key === 'Enter' || e.key === ' ') {
28
+ e.preventDefault();
29
+ openModal(versionData);
30
+ }
31
+ }}
32
onClick={() => openModal(versionData)}
33
>
34
{t('details')}
0 commit comments