From 73038f1717f9aa20c21618b9ecead6a1c29f339c Mon Sep 17 00:00:00 2001 From: Kato Date: Fri, 4 Sep 2026 16:59:39 +0000 Subject: [PATCH] =?UTF-8?q?Remove=20'Ver=C3=B6ffentlicht/Published'=20row?= =?UTF-8?q?=20from=20member=20detail=20modal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 5 ----- js/main.js | 1 - 2 files changed, 6 deletions(-) diff --git a/index.html b/index.html index 97f3b71..45191c7 100644 --- a/index.html +++ b/index.html @@ -208,11 +208,6 @@ Location - -
- Veröffentlicht - Published - - -
Beschreibung Description diff --git a/js/main.js b/js/main.js index ba2c09b..585f693 100644 --- a/js/main.js +++ b/js/main.js @@ -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');