Skip to content

Commit

Permalink
refactor: invert setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Mar 20, 2019
1 parent b2c9a91 commit 138648c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/devtools/views/settings/GlobalPreferences.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
</VueSwitch>
</VueFormField>

<VueFormField title="Detected console log">
<VueFormField title="Detected Vue message">
<VueSwitch
:value="!$shared.logDetected"
@input="$shared.logDetected = !$event"
:value="$shared.logDetected"
@input="$shared.logDetected = $event"
>
Disable
Display in browser console
</VueSwitch>
</VueFormField>
</div>
Expand Down

0 comments on commit 138648c

Please sign in to comment.