fix(club): adjust access request button placement in ClubView

- Moved the request access button inside the no access message block for better visual coherence.
- Ensured that the button remains disabled when an access request is pending, maintaining user experience consistency.
This commit is contained in:
Torsten Schulz (local)
2026-02-04 13:44:09 +01:00
parent f9a63a13ce
commit 84bbcb0f87

View File

@@ -25,8 +25,10 @@
<div v-if="accessRequested" class="access-requested">
{{ $t('club.accessRequestPending') }}
</div>
<div v-else>{{ $t('club.noAccess') }}</div>
<button @click="requestAccess" :disabled="accessRequested">{{ $t('club.requestAccess') }}</button>
<div v-else>
{{ $t('club.noAccess') }}
<button @click="requestAccess" :disabled="accessRequested">{{ $t('club.requestAccess') }}</button>
</div>
</div>
</div>