aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-12-07 23:41:12 +0800
committerGitHub <noreply@github.com>2017-12-07 23:41:12 +0800
commit6553ba132d6f1aa889d9052dac021cefcd708cad (patch)
tree5c86f950e119474ba6b954d88392f56fc9d5ee1a /ui/app
parent35be563fbdc74974f54b3e90b2eba319b0619754 (diff)
parenta171b9b847bf0a889d1a29f51ddd475da8061874 (diff)
downloadtangerine-wallet-browser-6553ba132d6f1aa889d9052dac021cefcd708cad.tar.gz
tangerine-wallet-browser-6553ba132d6f1aa889d9052dac021cefcd708cad.tar.zst
tangerine-wallet-browser-6553ba132d6f1aa889d9052dac021cefcd708cad.zip
Merge pull request #2654 from abitrolly/patch-2
Download State Logs with .json extension
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/config.js b/ui/app/config.js
index c14fa1d28..9cb2a0aad 100644
--- a/ui/app/config.js
+++ b/ui/app/config.js
@@ -117,7 +117,7 @@ ConfigScreen.prototype.render = function () {
if (err) {
state.dispatch(actions.displayWarning('Error in retrieving state logs.'))
} else {
- exportAsFile('MetaMask State Logs', result)
+ exportAsFile('MetaMask State Logs.json', result)
}
})
},