Skip to content

Commit

Permalink
fix(tables): Add table-data class to SortableTable
Browse files Browse the repository at this point in the history
[finishes #109909054]

Signed-off-by: August Toman-Yih <atomanyih@pivotal.io>
  • Loading branch information
charleshansen authored and August Toman-Yih committed Dec 11, 2015
1 parent b0cc929 commit 7d280d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export const SortableTable = React.createClass({
},

render() {
const props = mergeProps(this.props, {className: ['table', 'table-sortable']});
const props = mergeProps(this.props, {className: ['table', 'table-sortable', 'table-data']});

return (
<table {...props} >
Expand Down

0 comments on commit 7d280d9

Please sign in to comment.