feat(web): DiscoverResultCard attribution prop for M5c suggestions

This commit is contained in:
2026-05-01 06:25:42 -04:00
parent 95b706836d
commit 7f18a04161
2 changed files with 28 additions and 0 deletions
@@ -12,6 +12,7 @@
subtitle,
imageUrl,
state,
attribution,
onRequest,
}: {
kind: DiscoverCardKind;
@@ -19,6 +20,7 @@
subtitle?: string;
imageUrl?: string;
state: DiscoverCardState;
attribution?: string;
onRequest?: () => void;
} = $props();
@@ -55,6 +57,11 @@
{#if subtitle}
<div class="subtitle text-sm text-text-secondary">{subtitle}</div>
{/if}
{#if attribution}
<div class="attribution text-xs italic text-text-secondary" data-testid="attribution">
{attribution}
</div>
{/if}
<div class="badge-row" data-testid="badge-row">
{#if state === 'kept'}
<span class="kept-pill" role="status">Kept</span>