Remove 'Veröffentlicht/Published' row from member detail modal

This commit is contained in:
Kato
2026-09-04 16:59:39 +00:00
parent d68d01264f
commit 73038f1717
2 changed files with 0 additions and 6 deletions
-5
View File
@@ -208,11 +208,6 @@
<span class="detail-label hide-en">Location</span>
<span class="detail-value" id="user-detail-location">-</span>
</div>
<div class="detail-row">
<span class="detail-label hide-de">Veröffentlicht</span>
<span class="detail-label hide-en">Published</span>
<span class="detail-value" id="user-detail-publish">-</span>
</div>
<div class="detail-row">
<span class="detail-label hide-de">Beschreibung</span>
<span class="detail-label hide-en">Description</span>
-1
View File
@@ -326,7 +326,6 @@ 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-publish').textContent = user.publish ? 'Ja / Yes' : 'Nein / No';
document.getElementById('user-detail-description').textContent = user.Description || '-';
modal.classList.remove('hidden');