This commit is contained in:
epoberezkin
2026-03-24 20:03:58 +00:00
parent 1cfb4efe1b
commit 53369fdb1e

View File

@@ -246,6 +246,13 @@ function displayEntries(entries) {
textContainer.appendChild(memberCountElement);
}
if (entryType?.admission?.review === "all") {
const knockingElement = document.createElement('p');
knockingElement.textContent = 'New members are reviewed by admins';
knockingElement.className = 'text-sm';
textContainer.appendChild(knockingElement);
}
const imgLinkElement = document.createElement('a');
const groupLinkUri = groupLink.connShortLink ?? groupLink.connFullLink
try {