Skip to content

Commit 0f59730

Browse files
committed
Fix ? not reached by tab
1 parent ed3d36c commit 0f59730

File tree

1 file changed

+2
-2
lines changed
  • src/shared/components/challenge-detail/Specification/SideBar

1 file changed

+2
-2
lines changed

src/shared/components/challenge-detail/Specification/SideBar/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Final Review:
109109
<span styleName="link-like-paragraph tooltip-container">
110110
{reviewTypeTitle}
111111
<Tooltip content={reviewTip} trigger={['hover', 'focus']}>
112-
<div styleName="tctooltip">
112+
<div styleName="tctooltip" tabIndex="0" role="button">
113113
?
114114
</div>
115115
</Tooltip>
@@ -120,7 +120,7 @@ Approval:
120120
<span styleName="link-like-paragraph tooltip-container">
121121
User Sign-Off
122122
<Tooltip content={approvalTip} className={styles['tooltip-overlay']} trigger={['hover', 'focus']}>
123-
<div styleName="tctooltip">
123+
<div styleName="tctooltip" tabIndex="0" role="button">
124124
?
125125
</div>
126126
</Tooltip>

0 commit comments

Comments
 (0)