mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Convert state logs into a download.
This commit is contained in:
parent
08f227607a
commit
ad14e9338d
@ -5,7 +5,8 @@ const connect = require('react-redux').connect
|
|||||||
const actions = require('./actions')
|
const actions = require('./actions')
|
||||||
const currencies = require('./conversion.json').rows
|
const currencies = require('./conversion.json').rows
|
||||||
const validUrl = require('valid-url')
|
const validUrl = require('valid-url')
|
||||||
const copyToClipboard = require('copy-to-clipboard')
|
const exportAsFile = require('./util').exportAsFile
|
||||||
|
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(ConfigScreen)
|
module.exports = connect(mapStateToProps)(ConfigScreen)
|
||||||
|
|
||||||
@ -110,9 +111,9 @@ ConfigScreen.prototype.render = function () {
|
|||||||
alignSelf: 'center',
|
alignSelf: 'center',
|
||||||
},
|
},
|
||||||
onClick (event) {
|
onClick (event) {
|
||||||
copyToClipboard(window.logState())
|
exportAsFile('MetaMask State Logs', window.logState())
|
||||||
},
|
},
|
||||||
}, 'Copy State Logs'),
|
}, 'Download State Logs'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('hr.horizontal-line'),
|
h('hr.horizontal-line'),
|
||||||
|
Loading…
Reference in New Issue
Block a user