diff options
Diffstat (limited to 'profile/public/user.js')
-rw-r--r-- | profile/public/user.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/profile/public/user.js b/profile/public/user.js index 93d1399..5bd527c 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -60,6 +60,11 @@ async function addComments(comments) { div.dataset.id = comment.id; const span = document.createElement("span"); span.textContent = comment.comment; + if ("user" in comment && Object.keys(comment.user).length > 0) { + span.innerHTML += ` <small>- ${comment.user.name} ${comment.user.middlename || ""} ${ + comment.user.surname + }</small>`; + } div.append(span); if (comment.owner) { |