Skip to content

Commit 598bb96

Browse files
committed
Remove variation names from tab sequence
1 parent 48983cd commit 598bb96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: js/form/conversion-data-form.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ module.exports = React.createClass( {
9999
</div>
100100
<div className="variation">
101101
<span className="label">
102-
<a href="#" className="variation-a" ref="nameA" onClick={ this.setVariationName }>{ this.props.variations.a.name }</a>
102+
<a href="#" className="variation-a" tabIndex="-1" ref="nameA" onClick={ this.setVariationName }>{ this.props.variations.a.name }</a>
103103
</span>
104104
<ConversionDataInput
105105
placeholderText="Participants A"
@@ -118,7 +118,7 @@ module.exports = React.createClass( {
118118
</div>
119119
<div className="variation">
120120
<span className="label">
121-
<a href="#" className="variation-b" ref="nameB" onClick={ this.setVariationName }>{ this.props.variations.b.name }</a>
121+
<a href="#" className="variation-b" tabIndex="-1" ref="nameB" onClick={ this.setVariationName }>{ this.props.variations.b.name }</a>
122122
</span>
123123
<ConversionDataInput
124124
placeholderText="Participants B"

0 commit comments

Comments
 (0)