logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: b62653c202d35ebcc5cd56d87c049405d6d500cd
parent be4244acde8183271d3770f2fbbd9d1ac571086b
Author: Henry Jameson <me@hjkos.com>
Date:   Thu, 17 Mar 2022 08:37:01 +0200

fix chat user titles

Diffstat:

Msrc/components/chat_title/chat_title.js4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/components/chat_title/chat_title.js b/src/components/chat_title/chat_title.js @@ -1,10 +1,12 @@ import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator' import UserAvatar from '../user_avatar/user_avatar.vue' +import RichContent from 'src/components/rich_content/rich_content.jsx' export default { name: 'ChatTitle', components: { - UserAvatar + UserAvatar, + RichContent }, props: [ 'user', 'withAvatar'