From 664fd2724c77f2a53e198d9d262d09d030366d1e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 14 Mar 2020 13:06:32 -0600 Subject: [PATCH] Update PostComponent, improve likes modal --- resources/assets/js/components/PostComponent.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/resources/assets/js/components/PostComponent.vue b/resources/assets/js/components/PostComponent.vue index 9edc8ba86..4ecd02445 100644 --- a/resources/assets/js/components/PostComponent.vue +++ b/resources/assets/js/components/PostComponent.vue @@ -405,9 +405,9 @@ hide-footer centered title="Likes" - body-class="list-group-flush p-0"> + body-class="list-group-flush py-3 px-0">
-
+
@@ -418,9 +418,11 @@ {{user.username}}

-

- {{user.display_name}} - +

+ {{user.acct.split('@')[0]}}@{{user.acct.split('@')[1]}} +

+

+ {{user.display_name}}

@@ -959,7 +961,6 @@ export default { this.replyToIndex = index; this.replyingToId = e.id; this.reply_to_profile_id = e.account.id; - this.replyText = '@' + e.account.username + ' '; $('textarea[name="comment"]').focus(); },