Skip to content

Commit 9be1d0b

Browse files
committed
Fix topcoder-platform#2823 {MSFT-125} Sample challenge page: Screen reader reads the registrants information in a textual format and not in a tabular format.
1 parent 19a4d79 commit 9be1d0b

File tree

1 file changed

+5
-5
lines changed
  • src/shared/components/challenge-detail/Registrants

1 file changed

+5
-5
lines changed

src/shared/components/challenge-detail/Registrants/index.jsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ Round 1 Submitted Date
9999

100100
return (
101101
<div styleName="row" key={r.handle}>
102-
<div styleName="col-1">
103-
<a href={`${config.URL.BASE}/members/${r.handle}`} style={colorStyle}>
102+
<div styleName="col-1" tabIndex={0} role="button">
103+
<a href={`${config.URL.BASE}/members/${r.handle}`} style={colorStyle} tabIndex={-1}>
104104
{r.handle}
105105
</a>
106106
</div>
107-
<div styleName="col-2">
107+
<div styleName="col-2" tabIndex={0} role="button">
108108
<div styleName="sm-only title">
109109
Registration Date
110110
</div>
@@ -113,7 +113,7 @@ Registration Date
113113
{
114114
twoRounds
115115
&& (
116-
<div styleName="col-3">
116+
<div styleName="col-3" tabIndex={0} role="button">
117117
<div styleName="sm-only title">
118118
Round 1 Submitted Date
119119
</div>
@@ -129,7 +129,7 @@ Round 1 Submitted Date
129129
</div>
130130
)
131131
}
132-
<div styleName="col-4">
132+
<div styleName="col-4" tabIndex={0} role="button">
133133
<div styleName="sm-only title">
134134
{twoRounds ? 'Round 2 ' : ''}
135135
Submitted Date

0 commit comments

Comments
 (0)