diff options
author | 2023-06-25 15:49:43 +0200 | |
---|---|---|
committer | 2023-06-25 13:49:43 +0000 | |
commit | 72c98a3c5ee87f3eca6b1dfbd91ea7352a3f9a81 (patch) | |
tree | 37e8fd0271641fee2db1ae8fd3d352db3398cf9e /src/tools/jwt-parser/jwt-parser.vue | |
parent | 05ea54547515f7fb1eed5f31ccbde10e36041fb1 (diff) | |
download | it-tools-72c98a3c5ee87f3eca6b1dfbd91ea7352a3f9a81.tar.gz it-tools-72c98a3c5ee87f3eca6b1dfbd91ea7352a3f9a81.tar.zst it-tools-72c98a3c5ee87f3eca6b1dfbd91ea7352a3f9a81.zip |
refactor(ui): remove n-text (#506)
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> |