fix user-list-popover

This commit is contained in:
Henry Jameson 2022-03-27 12:29:28 +03:00
parent 0b7a8dca15
commit 913749739f
1 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import { defineAsyncComponent } from 'vue'
import RichContent from 'src/components/rich_content/rich_content.jsx'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
@ -13,6 +14,7 @@ const UserListPopover = {
'users'
],
components: {
RichContent,
Popover: defineAsyncComponent(() => import('../popover/popover.vue')),
UserAvatar: defineAsyncComponent(() => import('../user_avatar/user_avatar.vue'))
},