hack to prevent closing write data form when clicking alert

pull/10616/head
Jade McGough 2017-05-26 17:08:38 -07:00
parent 3827003ec4
commit aa64ebefdb
1 changed files with 6 additions and 3 deletions

View File

@ -22,9 +22,12 @@ class WriteDataForm extends Component {
this.setState({selectedDatabase: item.text})
}
handleClickOutside() {
const {onClose} = this.props
onClose()
handleClickOutside(e) {
// guard against clicking to close error notification
if (e.target.className === 'overlay-technology') {
const {onClose} = this.props
onClose()
}
}
handleKeyUp(e) {