feat/issue-283-sender-receiver-grouping #284

Merged
marcel merged 8 commits from feat/issue-283-sender-receiver-grouping into main 2026-04-20 11:29:34 +02:00
Showing only changes of commit ac50b353b8 - Show all commits

View File

@@ -140,12 +140,14 @@ function safeTagColor(color: string | null | undefined): string {
<div>
{doc.documentDate ? formatDate(doc.documentDate) : '—'}
</div>
<div class="flex items-center gap-2">
<div class="flex items-start gap-2">
<ProgressRing percentage={item.completionPercentage} />
<div class="flex h-9 items-center">
<ContributorStack contributors={item.contributors} hasMore={hasMore} />
</div>
</div>
</div>
</div>
<!-- Right column — desktop only -->
<div class="hidden flex-col gap-2 pl-4 font-sans text-xs text-ink-2 sm:flex sm:w-44 lg:w-56">
@@ -172,11 +174,13 @@ function safeTagColor(color: string | null | undefined): string {
{/if}
</span>
</div>
<div class="flex items-center gap-2">
<div class="flex items-start gap-2">
<ProgressRing percentage={item.completionPercentage} />
<div class="flex h-9 items-center">
<ContributorStack contributors={item.contributors} hasMore={hasMore} />
</div>
</div>
</div>
</div>
</a>
</li>