diff options
| author | Henry Jameson <me@hjkos.com> | 2022-06-21 01:03:20 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-06-21 01:03:20 +0300 |
| commit | af98bc2973eed8eb08927df866bc29ecae659d44 (patch) | |
| tree | 3c27b81bc546c2cdd054f4107f752d7602f014ca /src/components/user_popover/user_popover.js | |
| parent | aca8cf64db26e8a883a8099462ce5381c7e330e4 (diff) | |
don't use async component for user popover to fix the incorrect initial
position.
for some reason same doesn't work with status popover...
Diffstat (limited to 'src/components/user_popover/user_popover.js')
| -rw-r--r-- | src/components/user_popover/user_popover.js | 3 |
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')) } } |
