Accurately reflect HIDEUSERNAME value

This commit is contained in:
Sam 2018-06-17 15:09:03 +10:00
parent 59c55887bf
commit d763d2e757
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export default {
},
HIDEUSERNAME: {
get () {
return (this.$store.getters.getSettings['HIDEUSERNAME'])
return JSON.parse((this.$store.getters.getSettings['HIDEUSERNAME']))
},
set (value) {
this.$store.commit('setSetting', ['HIDEUSERNAME', value])