aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_popover/user_popover.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/user_popover/user_popover.js')
-rw-r--r--src/components/user_popover/user_popover.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/user_popover/user_popover.js b/src/components/user_popover/user_popover.js
index 3b3722ce..fa7f9781 100644
--- a/src/components/user_popover/user_popover.js
+++ b/src/components/user_popover/user_popover.js
@@ -4,11 +4,16 @@ import { defineAsyncComponent } from 'vue'
const UserPopover = {
name: 'UserPopover',
props: [
- 'userId', 'overlayCenters', 'disabled', 'overlay-centers-selector'
+ 'userId', 'overlayCenters', 'disabled', 'overlayCentersSelector'
],
components: {
UserCard,
Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
+ },
+ computed: {
+ userPopoverZoom () {
+ return this.$store.getters.mergedConfig.userPopoverZoom
+ }
}
}