File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,11 +123,11 @@ class ToolBar extends React.Component{
123
123
render ( ) {
124
124
var modalClassName = "bs-table-modal-sm" + new Date ( ) . getTime ( ) ;
125
125
var insertBtn = this . props . enableInsert ?
126
- < button type = "button" onClick = { this . props . onAddRowBegin } className = "btn btn-info" data-toggle = "modal" data-target = { '.' + modalClassName } >
126
+ < button type = "button" onClick = { this . props . onAddRowBegin } className = "btn btn-info react-bs-table-add-btn " data-toggle = "modal" data-target = { '.' + modalClassName } >
127
127
< i className = "glyphicon glyphicon-plus" > </ i > New</ button > :null ;
128
128
129
129
var deleteBtn = this . props . enableDelete ?
130
- < button type = "button" className = "btn btn-warning" data-toggle = "tooltip" data-placement = "right" title = "Drop selected row"
130
+ < button type = "button" className = "btn btn-warning react-bs-table-del-btn " data-toggle = "tooltip" data-placement = "right" title = "Drop selected row"
131
131
onClick = { this . handleDropRowBtnClick . bind ( this ) } >
132
132
< i className = "glyphicon glyphicon-trash" > </ i > Delete
133
133
</ button > :null ;
You can’t perform that action at this time.
0 commit comments