From 10d6fd3ebf58f0e0b4026602a81609a4038058af Mon Sep 17 00:00:00 2001 From: silverpill Date: Sun, 2 Oct 2022 16:01:55 +0000 Subject: [PATCH] Add display name to quote header --- src/components/Post.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/Post.vue b/src/components/Post.vue index 930e8a7..c03ac4f 100644 --- a/src/components/Post.vue +++ b/src/components/Post.vue @@ -73,6 +73,9 @@ >
+ + {{ (new ProfileWrapper(post.quote.account)).getDisplayName() }} + @{{ getActorAddress(post.quote.account) }} @@ -632,10 +635,17 @@ async function onMintToken() { width: $icon-size; } + .display-name { + color: $text-color; + font-weight: bold; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .actor-address { overflow: hidden; text-overflow: ellipsis; - user-select: all; } }