diff --git a/src/Frontend/src/components/LetterWithEnvelope.vue b/src/Frontend/src/components/LetterWithEnvelope.vue index 05805c8..2f43a0b 100644 --- a/src/Frontend/src/components/LetterWithEnvelope.vue +++ b/src/Frontend/src/components/LetterWithEnvelope.vue @@ -106,7 +106,7 @@ defineProps() dominant-baseline="middle" text-anchor="middle" style="font:italic 1.0px sans-serif;" - >{{ returnPath }} + >{{ returnPath?.slice(-36) }} diff --git a/src/Frontend/src/components/MailFlowTable.vue b/src/Frontend/src/components/MailFlowTable.vue index 57ff4da..7fa2988 100644 --- a/src/Frontend/src/components/MailFlowTable.vue +++ b/src/Frontend/src/components/MailFlowTable.vue @@ -39,7 +39,8 @@ const columns : QTableProps['columns'] = [ align: 'left', label: 'Time (UTC)', field: 'dateTime', - sortable: false + sortable: false, + style: 'min-width: 170px;' }, { name: 'delay', @@ -53,21 +54,24 @@ const columns : QTableProps['columns'] = [ align: 'left', label: 'Receiving host (By)', field: 'by', - sortable: false + sortable: false, + style: 'max-width: 400px; white-space: pre-line;' }, { name: 'from', align: 'left', label: 'Sending host (From)', field: 'from', - sortable: false + sortable: false, + style: 'max-width: 400px; white-space: pre-line;' }, { name: 'via', align: 'left', label: 'Via', field: 'via', - sortable: false + sortable: false, + style: 'max-width: 400px; white-space: pre-line;' }, { name: 'with', @@ -75,21 +79,23 @@ const columns : QTableProps['columns'] = [ label: 'With', field: 'with', sortable: false, - style: 'white-space: pre-wrap;' + style: 'max-width: 400px; white-space: pre-line;' }, { name: 'id', align: 'left', label: 'Id', field: 'id', - sortable: false + sortable: false, + style: 'max-width: 400px; white-space: pre-line;' }, { name: 'for', align: 'left', label: 'For', field: 'for', - sortable: false + sortable: false, + style: 'max-width: 400px; white-space: pre-line;' } ] @@ -120,24 +126,29 @@ function formatDate (date: Date): string { hide-bottom >