Use same logic for downloading state logs in the old/uat

This commit is contained in:
Thomas Huang 2018-02-20 19:52:32 -08:00
parent 3fb9e04f5f
commit 84c023ba40
1 changed files with 7 additions and 1 deletions

View File

@ -201,7 +201,13 @@ class Settings extends Component {
h('div.settings__content-item-col', [
h('button.settings__clear-button', {
onClick (event) {
exportAsFile('MetaMask State Logs', window.logState())
window.logStateString((err, result) => {
if (err) {
this.state.dispatch(actions.displayWarning('Error in retrieving state logs.'))
} else {
exportAsFile('MetaMask State Logs.json', result)
}
})
},
}, 'Download State Logs'),
]),