aboutsummaryrefslogtreecommitdiff
path: root/profile/public
diff options
context:
space:
mode:
authorMarvin Borner2021-02-10 16:54:30 +0100
committerMarvin Borner2021-02-10 16:54:30 +0100
commit787682fdab595f098ea16fec351f6d43ad0f8e27 (patch)
tree56d189db871f4dfa6c95b5b1924b7dfc7fe5254b /profile/public
parent05127413fbd5a4f5e04bf2bd7b62634e6a570bfa (diff)
superadmin privilege
Diffstat (limited to 'profile/public')
-rw-r--r--profile/public/user.js5
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) {