aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/user_popover/user_popover.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/user_popover/user_popover.js b/src/components/user_popover/user_popover.js
index bffd5962..962ae6a0 100644
--- a/src/components/user_popover/user_popover.js
+++ b/src/components/user_popover/user_popover.js
@@ -1,3 +1,4 @@
+import UserCard from '../user_card/user_card.vue'
import { defineAsyncComponent } from 'vue'
const UserPopover = {
@@ -6,7 +7,7 @@ const UserPopover = {
'userId', 'overlayCenters', 'disabled'
],
components: {
- UserCard: defineAsyncComponent(() => import('../user_card/user_card.vue')),
+ UserCard,
Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
}
}