fixed rendering issue of listings' select all checkbox

This commit is contained in:
Jonathan Labreuille
2015-09-29 13:23:12 +02:00
parent ad851553a0
commit e3ef36ac4e

View File

@@ -22,7 +22,7 @@ define(['react', 'classnames'], function(React, classNames) {
if(this.props.is_selectable === true) {
checkbox = (
<td
<th
className="manage-column column-cb check-column">
<label className="screen-reader-text">
{ 'Select All' }
@@ -32,7 +32,7 @@ define(['react', 'classnames'], function(React, classNames) {
ref="toggle"
checked={ this.props.selection }
onChange={ this.handleSelectItems } />
</td>
</th>
);
}