We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ab355 commit ca2e4afCopy full SHA for ca2e4af
src/TableBody.js
@@ -394,7 +394,8 @@ class TableBody extends Component {
394
if (CustomComponent) {
395
content = (<CustomComponent isExpandableRow={ isExpandableRow } isExpanded={ isExpanded } />);
396
} else if (isExpandableRow) {
397
- content = (isExpanded ? '-' : '+' );
+ content = (isExpanded ? (<span className='glyphicon glyphicon-minus'></span>) :
398
+ (<span className='glyphicon glyphicon-plus'></span>) );
399
} else {
400
content = ' ';
401
}
0 commit comments