Cosmetic
Some checks failed
/ build (push) Failing after 9s

This commit is contained in:
phil 2025-02-08 01:57:43 +01:00
parent 88423b26dd
commit 532c2f1f6f
3 changed files with 2 additions and 2 deletions

View file

@ -176,6 +176,7 @@ hr {
text-decoration: none; text-decoration: none;
border-radius: 8px; border-radius: 8px;
border: none; border: none;
cursor: pointer;
} }
.token { .token {

View file

@ -120,7 +120,7 @@ async function get_resource(evt: MouseEvent) {
<div v-if="settings.tokenSandbox" class="token-info"> <div v-if="settings.tokenSandbox" class="token-info">
<hr> <hr>
<div> <div>
<h2>idToken</h2> <h2>id token</h2>
<div class="token"> <div class="token">
<div v-for="(value, key) in keycloak.idTokenParsed"> <div v-for="(value, key) in keycloak.idTokenParsed">
<div class="key">{{ key }}</div> <div class="key">{{ key }}</div>

View file

@ -15,7 +15,6 @@ interface Settings {
tokenSandbox: boolean tokenSandbox: boolean
} }
export let settings: Settings export let settings: Settings
export let authServer: AxiosInstance export let authServer: AxiosInstance
export let resourceServer: AxiosInstance export let resourceServer: AxiosInstance