Render user description as HTML instead of plain text

This commit is contained in:
Kato
2026-09-04 18:05:01 +00:00
parent 73038f1717
commit c61cd06c2c
6 changed files with 154 additions and 1 deletions
+1 -1
View File
@@ -326,7 +326,7 @@ function openUserDetailModal(user) {
document.getElementById('user-detail-email').textContent = user.email || '-';
document.getElementById('user-detail-homepage').textContent = user.homepage || '-';
document.getElementById('user-detail-location').textContent = user.location || '-';
document.getElementById('user-detail-description').textContent = user.Description || '-';
document.getElementById('user-detail-description').innerHTML = user.Description || '-';
modal.classList.remove('hidden');
}