Remove 'Veröffentlicht/Published' row from member detail modal
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user