Skip to content

Commit

Permalink
optimize break header data
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jul 21, 2024
1 parent 2fbc037 commit ad52504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Frontend/src/components/MailDetailBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ withDefaults(defineProps<Props>(), {
:key="`detail-${index}`"
>
<template v-if="preformatted">
<pre style="margin: 0px;">{{ detail }}</pre>
<pre style="margin: 0px; word-wrap: break-word; white-space: break-spaces;">{{ detail }}</pre>
</template>
<template v-else>
<div style="font-family: monospace;">
<div style="font-family: monospace; word-wrap: break-word; white-space: break-spaces;">
{{ detail }}
</div>
</template>
Expand Down

0 comments on commit ad52504

Please sign in to comment.