Skip to content

Commit

Permalink
Fix check for cold storage
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelmutschlechner committed Feb 7, 2019
1 parent 791f43e commit 8d33d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function connect (Vue) {

bridge.log('backend ready.')
bridge.send('ready', Vue.version)
if (storage.get('shared-data:logDetected')) {
if (storage.get('shared-data:logDetected') !== false) {
console.log(
`%c vue-devtools %c Detected Vue v${Vue.version} %c`,
'background:#35495e ; padding: 1px; border-radius: 3px 0 0 3px; color: #fff',
Expand Down

0 comments on commit 8d33d8b

Please sign in to comment.