diff options
Diffstat (limited to 'src/tools/jwt-parser/jwt-parser.vue')
-rw-r--r-- | src/tools/jwt-parser/jwt-parser.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/jwt-parser/jwt-parser.vue b/src/tools/jwt-parser/jwt-parser.vue index d5b1168..6b30fc0 100644 --- a/src/tools/jwt-parser/jwt-parser.vue +++ b/src/tools/jwt-parser/jwt-parser.vue @@ -40,18 +40,18 @@ const validation = useValidation({ </th> <tr v-for="{ claim, claimDescription, friendlyValue, value } in decodedJWT[section.key]" :key="claim + value"> <td class="claims"> - <n-text strong> + <span font-bold> {{ claim }} - </n-text> - <n-text v-if="claimDescription" depth="3" ml-2> + </span> + <span v-if="claimDescription" ml-2 op-70> ({{ claimDescription }}) - </n-text> + </span> </td> <td> - <n-text>{{ value }}</n-text> - <n-text v-if="friendlyValue" ml-2 depth="3"> + <span>{{ value }}</span> + <span v-if="friendlyValue" ml-2 op-70> ({{ friendlyValue }}) - </n-text> + </span> </td> </tr> </template> |