logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: a61f6e1590ce82e3c81203193469acb461b0ba4b
parent ee86f56469e0eec44f3d2afa948c0213f83d0740
Author: Henry Jameson <me@hjkos.com>
Date:   Sat, 19 Feb 2022 22:12:37 +0200

use rich content in interaction lists

Diffstat:

Msrc/components/user_list_popover/user_list_popover.vue8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/components/user_list_popover/user_list_popover.vue b/src/components/user_list_popover/user_list_popover.vue @@ -22,7 +22,12 @@ /> <div class="user-list-names"> <!-- eslint-disable vue/no-v-html --> - <span v-html="user.name_html" /> + <RichContent + class="username" + :title="'@'+user.screen_name_ui" + :html="user.name_html" + :emoji="user.emoji" + /> <!-- eslint-enable vue/no-v-html --> <span class="user-list-screen-name">{{ user.screen_name_ui }}</span> </div> @@ -47,6 +52,7 @@ .user-list-popover { padding: 0.5em; + --emoji-size: 16px; .user-list-row { padding: 0.25em;