aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_list_popover
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-03-27 12:29:28 +0300
committerHenry Jameson <me@hjkos.com>2022-03-27 12:29:28 +0300
commit913749739ff4ae543433cc051485b0d572fc22f9 (patch)
tree343d2955fdef656ff2f39bb6cb9070d901c444d2 /src/components/user_list_popover
parent0b7a8dca154e793f3e8d865700ccc53b3f925ba2 (diff)
fix user-list-popover
Diffstat (limited to 'src/components/user_list_popover')
-rw-r--r--src/components/user_list_popover/user_list_popover.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/user_list_popover/user_list_popover.js b/src/components/user_list_popover/user_list_popover.js
index f0a16c38..e24eb9f7 100644
--- a/src/components/user_list_popover/user_list_popover.js
+++ b/src/components/user_list_popover/user_list_popover.js
@@ -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'))
},