fix infiltration

This commit is contained in:
Olivier Gagnon
2021-09-20 17:10:44 -04:00
parent 9552ae3ef1
commit bb4de3f62c
9 changed files with 116 additions and 11 deletions

View File

@@ -44,7 +44,11 @@ function BitNodePortal(props: IPortalProps): React.ReactElement {
}
return (
<a className={`bitnode ${cssClass} tooltip`} onClick={openPortalPopup}>
<button
className={`bitnode ${cssClass} tooltip`}
aria-label={`enter-bitnode-${bitNode.number.toString()}`}
onClick={openPortalPopup}
>
<strong>O</strong>
<span className="tooltiptext">
<strong>
@@ -56,7 +60,7 @@ function BitNodePortal(props: IPortalProps): React.ReactElement {
{bitNode.desc}
<br />
</span>
</a>
</button>
);
}