Skip to content

Commit 515f394

Browse files
committed
Fix topcoder-platform#2824 [MSFT-126] Sample challenge page: There is a Question mark next to the content under the headings 'final review' and 'approval'. A message appears when the mouse is hovered over the ?. The tooltip is not keyboard accessible.
1 parent 89d1b1a commit 515f394

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
@@ -108,7 +108,7 @@ Final Review:
108108
</h4>
109109
<span styleName="link-like-paragraph tooltip-container">
110110
{reviewTypeTitle}
111-
<Tooltip content={reviewTip}>
111+
<Tooltip content={reviewTip} trigger={['hover', 'focus']}>
112112
<div styleName="tctooltip">
113113
?
114114
</div>
@@ -119,7 +119,7 @@ Approval:
119119
</h4>
120120
<span styleName="link-like-paragraph tooltip-container">
121121
User Sign-Off
122-
<Tooltip content={approvalTip} className={styles['tooltip-overlay']}>
122+
<Tooltip content={approvalTip} className={styles['tooltip-overlay']} trigger={['hover', 'focus']}>
123123
<div styleName="tctooltip">
124124
?
125125
</div>

0 commit comments

Comments
 (0)