diff options
author | Marvin Borner | 2021-02-10 16:54:30 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-10 16:54:30 +0100 |
commit | 787682fdab595f098ea16fec351f6d43ad0f8e27 (patch) | |
tree | 56d189db871f4dfa6c95b5b1924b7dfc7fe5254b /profile/public | |
parent | 05127413fbd5a4f5e04bf2bd7b62634e6a570bfa (diff) |
superadmin privilege
Diffstat (limited to 'profile/public')
-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) { |