From 787682fdab595f098ea16fec351f6d43ad0f8e27 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 10 Feb 2021 16:54:30 +0100 Subject: superadmin privilege --- profile/public/user.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'profile/public/user.js') 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 += ` - ${comment.user.name} ${comment.user.middlename || ""} ${ + comment.user.surname + }`; + } div.append(span); if (comment.owner) { -- cgit v1.2.3