Skip to content

Commit

Permalink
Use Tailwind .break-all instead of hardcoding style
Browse files Browse the repository at this point in the history
  • Loading branch information
luk1337 committed Dec 31, 2023
1 parent 8f09469 commit 1969e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/verify-tab/VerifyTabPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</tr>
<tr v-if="verifySignInfo?.publicKeyFingerprint">
<td>Public Key Fingerprint</td>
<td style="word-break: break-all">{{ verifySignInfo.publicKeyFingerprint }}</td>
<td class="break-all">{{ verifySignInfo.publicKeyFingerprint }}</td>
</tr>
<tr v-if="verifySignInfo?.serialNumber">
<td>Serial Number</td>
Expand Down

0 comments on commit 1969e22

Please sign in to comment.