Skip to content

Commit 58aed2d

Browse files
Make formatter a div so we show tooltips
1 parent b2bd1e6 commit 58aed2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/addons/formatters/SimpleCellFormatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const SimpleCellFormatter = React.createClass({
1010
},
1111

1212
render(): ?ReactElement {
13-
return <span>{this.props.value}</span>;
13+
return <div title={this.props.value}>{this.props.value}</div>;
1414
}
1515
});
1616

0 commit comments

Comments
 (0)