Guest User

Untitled

a guest
Oct 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. state: ComponentState = {
  2. dialogKey: 0
  3. }
  4.  
  5. <DetailsList
  6. key={this.state.dialogKey}
  7. onActiveItemChanged={trainDialog => this.onOpenModel(item)}
  8. ...
  9. />
  10.  
  11. onCloseModal() {
  12. this.setState({
  13. dialogKey: this.state.dialogKey+1
  14. })
  15. }
Add Comment
Please, Sign In to add comment