don't use async component for user popover to fix the incorrect initial

position.
for some reason same doesn't work with status popover...
このコミットが含まれているのは:
Henry Jameson 2022-06-21 01:03:20 +03:00
コミット af98bc2973
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -1,3 +1,4 @@
import UserCard from '../user_card/user_card.vue'
import { defineAsyncComponent } from 'vue' import { defineAsyncComponent } from 'vue'
const UserPopover = { const UserPopover = {
@ -6,7 +7,7 @@ const UserPopover = {
'userId', 'overlayCenters', 'disabled' 'userId', 'overlayCenters', 'disabled'
], ],
components: { components: {
UserCard: defineAsyncComponent(() => import('../user_card/user_card.vue')), UserCard,
Popover: defineAsyncComponent(() => import('../popover/popover.vue')) Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
} }
} }