Skip to content

Commit 27e4140

Browse files
committed
remove unused brackets
1 parent 2bf4f45 commit 27e4140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class BootstrapTable extends Component {
200200
style: column.props.tdStyle
201201
};
202202

203-
if ((column).type !== TableHeaderColumn && React.isValidElement(column.props.children)) {
203+
if (column.type !== TableHeaderColumn && React.isValidElement(column.props.children)) {
204204
columnDescription = {
205205
...columnDescription,
206206
...this.getColumnDescription(React.Children.only(column.props.children))

0 commit comments

Comments
 (0)