Skip to content

Commit

Permalink
fix #348
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Mar 26, 2016
1 parent d46ca49 commit fbc4654
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/toolbar/ToolBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import Notifier from '../Notification.js';

class ToolBar extends Component {

static modalSeq = 0;

constructor(props) {
super(props);
this.timeouteClear = 0;
Expand Down Expand Up @@ -173,7 +175,7 @@ class ToolBar extends Component {
}

render() {
this.modalClassName = 'bs-table-modal-sm' + new Date().getTime();
this.modalClassName = 'bs-table-modal-sm' + ToolBar.modalSeq++;
let insertBtn = null;
let deleteBtn = null;
let exportCSV = null;
Expand Down

0 comments on commit fbc4654

Please sign in to comment.