feat: improve mailbox UI spacing and email display (#788)

This commit is contained in:
Dream Hunter
2025-12-15 13:35:03 +08:00
committed by GitHub
parent e5f62d4713
commit 24366e2bff

View File

@@ -527,7 +527,7 @@ onBeforeUnmount(() => {
{{ t('refresh') }} {{ t('refresh') }}
</n-button> </n-button>
</n-space> </n-space>
<div v-if="showFilterInput" style="padding: 0 10px; margin-top: 8px;"> <div v-if="showFilterInput" style="padding: 0 10px; margin-top: 8px; margin-bottom: 10px;">
<n-input v-model:value="localFilterKeyword" <n-input v-model:value="localFilterKeyword"
:placeholder="t('keywordQueryTip')" size="small" clearable /> :placeholder="t('keywordQueryTip')" size="small" clearable />
</div> </div>
@@ -543,10 +543,14 @@ onBeforeUnmount(() => {
{{ utcToLocalDate(row.created_at, useUTCDate) }} {{ utcToLocalDate(row.created_at, useUTCDate) }}
</n-tag> </n-tag>
<n-tag type="info"> <n-tag type="info">
{{ showEMailTo ? "FROM: " + row.source : row.source }} <n-ellipsis style="max-width: 240px;">
{{ showEMailTo ? "FROM: " + row.source : row.source }}
</n-ellipsis>
</n-tag> </n-tag>
<n-tag v-if="showEMailTo" type="info"> <n-tag v-if="showEMailTo" type="info">
TO: {{ row.address }} <n-ellipsis style="max-width: 240px;">
TO: {{ row.address }}
</n-ellipsis>
</n-tag> </n-tag>
<AiExtractInfo :metadata="row.metadata" compact /> <AiExtractInfo :metadata="row.metadata" compact />
</template> </template>