diff --git a/app/services/comment.js b/app/services/comment.js index 79bb539..99ea171 100644 --- a/app/services/comment.js +++ b/app/services/comment.js @@ -42,6 +42,7 @@ class CommentService extends SiteService { { path: 'author', select: '_id username username_lc displayName picture', + strictPopulate: false, }, ], }, diff --git a/app/views/chat/room/view.pug b/app/views/chat/room/view.pug index 738f5ea..c7364bc 100644 --- a/app/views/chat/room/view.pug +++ b/app/views/chat/room/view.pug @@ -23,7 +23,7 @@ block content .uk-width-auto .uk-inline button(type="button").uk-button.uk-button-link.uk-button-small - i.fas.fa-ellipsis-h + i.fas.fa-ellipsis-v #chat-room-menu(uk-dropdown={ pos: 'bottom-right', mode: 'click' }) ul.uk-nav.uk-nav-default.uk-dropdown-nav li diff --git a/app/views/comment/components/comment.pug b/app/views/comment/components/comment.pug index f2a6798..5e387d5 100644 --- a/app/views/comment/components/comment.pug +++ b/app/views/comment/components/comment.pug @@ -19,7 +19,7 @@ mixin renderComment (comment, options) .uk-width-auto button(type="button").uk-button.uk-button-link span - i.fas.fa-ellipsis-h + i.fas.fa-ellipsis-v div(data-comment-id= comment._id, uk-dropdown={ mode: 'click', pos: 'bottom-right' }) ul.uk-nav.uk-dropdown-nav if user && user._id.equals(comment.author._id) diff --git a/app/views/user/profile.pug b/app/views/user/profile.pug index 12ec8a9..cc5b5b0 100644 --- a/app/views/user/profile.pug +++ b/app/views/user/profile.pug @@ -23,5 +23,9 @@ block content each badge in userProfile.badges .uk-width-auto alert.uk-label= badge - - p Your profile is where you edit your account settings, configure your commenting defaults, and otherwise manage how you use #[+renderSiteLink()]. \ No newline at end of file + + h2 Recent Comments + ul.uk-list + each comment in commentHistory + li + +renderComment(comment, { }) \ No newline at end of file