aboutsummaryrefslogtreecommitdiff
path: root/src/components/quick_view_settings/quick_view_settings.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-08-04 23:32:06 +0300
committerHenry Jameson <me@hjkos.com>2022-08-04 23:32:06 +0300
commit44d6d36ed19f58800800cd9c394464658b688889 (patch)
treef607dfa7284f7e331f1c747773e9cc3dca60a7f1 /src/components/quick_view_settings/quick_view_settings.js
parent2802e47ac947bc884dcbc86f00803fd3613efa95 (diff)
fix bugs
Diffstat (limited to 'src/components/quick_view_settings/quick_view_settings.js')
-rw-r--r--src/components/quick_view_settings/quick_view_settings.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/quick_view_settings/quick_view_settings.js b/src/components/quick_view_settings/quick_view_settings.js
index d1135f01..2798f37a 100644
--- a/src/components/quick_view_settings/quick_view_settings.js
+++ b/src/components/quick_view_settings/quick_view_settings.js
@@ -1,12 +1,12 @@
import Popover from '../popover/popover.vue'
import { mapGetters } from 'vuex'
import { library } from '@fortawesome/fontawesome-svg-core'
-import { faList, faFolderTree, faBarsStaggered, faWrench } from '@fortawesome/free-solid-svg-icons'
+import { faList, faFolderTree, faBars, faWrench } from '@fortawesome/free-solid-svg-icons'
library.add(
faList,
faFolderTree,
- faBarsStaggered,
+ faBars,
faWrench
)
@@ -51,7 +51,8 @@ const QuickViewSettings = {
showUserAvatars: {
get () { return this.mergedConfig.mentionLinkShowAvatar },
set () {
- const value = !this.mentionLinkShowAvatar
+ const value = !this.showUserAvatars
+ console.log(value)
this.$store.dispatch('setOption', { name: 'mentionLinkShowAvatar', value })
}
},