⚠️ Improve readability of warning messages and hints for client credentials and scope usage

This commit is contained in:
2026-01-28 18:40:53 +00:00
parent 593a707438
commit f25bbb3b2d

View File

@@ -101,8 +101,14 @@
<div class="info-badge" v-if="isClientCredsAuthenticated">
Client Credentials Active
</div>
<div class="info-badge warning" v-if="isClientCredsAuthenticated && tournamentScope === ScopeType.USER">
Client credentials may not work with USER scope - switch to APPLICATION scope
<div
class="info-badge warning"
v-if="
isClientCredsAuthenticated && tournamentScope === ScopeType.USER
"
>
⚠️ Client credentials may not work with USER scope - switch to
APPLICATION scope
</div>
<router-link
to="/client-credentials"
@@ -111,7 +117,8 @@
Manage Client Credentials
</router-link>
<span class="scope-hint">
Client credentials should use APPLICATION scope for tournament access
Client credentials should use APPLICATION scope for tournament
access
</span>
</div>
</div>