Skip to content

Commit

Permalink
fix(jwt-parser): prevent UI overflow on small screen (#1095)
Browse files Browse the repository at this point in the history
Fix #1045
  • Loading branch information
sharevb authored May 27, 2024
1 parent 30144aa commit dd4b7e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/jwt-parser/jwt-parser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ const validation = useValidation({
{{ section.title }}
</th>
<tr v-for="{ claim, claimDescription, friendlyValue, value } in decodedJWT[section.key]" :key="claim + value">
<td class="claims">
<td class="claims" style="vertical-align: top;">
<span font-bold>
{{ claim }}
</span>
<span v-if="claimDescription" ml-2 op-70>
({{ claimDescription }})
</span>
</td>
<td>
<td style="word-wrap: break-word;word-break: break-all;">
<span>{{ value }}</span>
<span v-if="friendlyValue" ml-2 op-70>
({{ friendlyValue }})
Expand Down

0 comments on commit dd4b7e6

Please sign in to comment.