Skip to content

Commit dd4b7e6

Browse files
authored
fix(jwt-parser): prevent UI overflow on small screen (CorentinTh#1095)
Fix CorentinTh#1045
1 parent 30144aa commit dd4b7e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/jwt-parser/jwt-parser.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ const validation = useValidation({
3939
{{ section.title }}
4040
</th>
4141
<tr v-for="{ claim, claimDescription, friendlyValue, value } in decodedJWT[section.key]" :key="claim + value">
42-
<td class="claims">
42+
<td class="claims" style="vertical-align: top;">
4343
<span font-bold>
4444
{{ claim }}
4545
</span>
4646
<span v-if="claimDescription" ml-2 op-70>
4747
({{ claimDescription }})
4848
</span>
4949
</td>
50-
<td>
50+
<td style="word-wrap: break-word;word-break: break-all;">
5151
<span>{{ value }}</span>
5252
<span v-if="friendlyValue" ml-2 op-70>
5353
({{ friendlyValue }})

0 commit comments

Comments
 (0)