From fc0fc57409280450ae7afdefa7889dabb4676f4f Mon Sep 17 00:00:00 2001 From: Marcel Date: Thu, 23 Apr 2026 08:19:46 +0200 Subject: [PATCH] refactor(documents): drop duplicate sender/receiver in list rows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The desktop document-list row showed sender/receiver twice — once side-by-side in the middle column and again stacked in the right column. Stack the middle-column block vertically (the side-by-side grid wasted horizontal space and competed with the larger thumbnail) and remove the now-redundant copy from the right column. The middle-column block keeps the search-match highlighting, which the right-column copy never had. Co-Authored-By: Claude Opus 4.7 --- .../src/lib/components/DocumentRow.svelte | 24 ++----------------- .../lib/components/DocumentRow.svelte.spec.ts | 24 +++++++++++++++++++ 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/frontend/src/lib/components/DocumentRow.svelte b/frontend/src/lib/components/DocumentRow.svelte index 3381f49a..b6d97762 100644 --- a/frontend/src/lib/components/DocumentRow.svelte +++ b/frontend/src/lib/components/DocumentRow.svelte @@ -77,8 +77,8 @@ function safeTagColor(color: string | null | undefined): string {

{/if} - -