fix: Hide the number of participant in GroupView

Fixes #1747
This commit is contained in:
Massedil
2025-06-27 19:12:39 +02:00
parent 0de5d1e4e3
commit cf932a378f

View File

@@ -84,7 +84,7 @@
{{ organizerDisplayName(event) }}
</span>
</div>
<p class="flex gap-1">
<p class="flex gap-1" v-if="!event.options.hideNumberOfParticipants">
<AccountMultiple />
<span v-if="event.options.maximumAttendeeCapacity !== 0">
{{
@@ -112,8 +112,9 @@
)
}}
</span>
<span v-if="event.participantStats.notApproved > 0">
</p>
<o-button
v-if="event.participantStats.notApproved > 0"
variant="text"
tag="router-link"
:to="{
@@ -133,8 +134,6 @@
)
}}
</o-button>
</span>
</p>
</div>
</router-link>
</template>