Füge Skript hinzu, um Sichtbarkeitsflags für Mitglieder auf true zu setzen
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 49s

This commit is contained in:
Torsten Schulz (local)
2026-02-14 02:58:30 +01:00
parent 79c45be7c7
commit d37f182928
2 changed files with 74 additions and 2 deletions

View File

@@ -122,7 +122,7 @@
{{ member.name }}
</template>
</div>
<div v-if="member.showBirthday && member.birthday" class="text-xs text-gray-500">
<div v-if="member.birthday" class="text-xs text-gray-500">
🎂 {{ formatBirthday(member.birthday) }}
</div>
<div
@@ -265,7 +265,7 @@
<template v-else>
{{ member.name }}
</template>
<span v-if="member.showBirthday && member.birthday" class="text-xs text-gray-500 ml-2">
<span v-if="member.birthday" class="text-xs text-gray-500 ml-2">
🎂 {{ formatBirthday(member.birthday) }}
</span>
</h3>