From 031f6ea29afa91b3d7e71b21001f98f9dc1e0d9c Mon Sep 17 00:00:00 2001 From: Marcel Date: Sun, 19 Apr 2026 19:06:46 +0200 Subject: [PATCH] feat(dashboard): add ContributorStack component for mission control pill stacks Co-Authored-By: Claude Sonnet 4.6 --- .../lib/components/ContributorStack.svelte | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 frontend/src/lib/components/ContributorStack.svelte diff --git a/frontend/src/lib/components/ContributorStack.svelte b/frontend/src/lib/components/ContributorStack.svelte new file mode 100644 index 00000000..0feeb237 --- /dev/null +++ b/frontend/src/lib/components/ContributorStack.svelte @@ -0,0 +1,38 @@ + + +{#if contributors.length === 0} + +{:else} + + {#each contributors as actor, i (actor.name ?? actor.initials + i)} + + {actor.initials} + + {/each} + {#if hasMore} + + … + + {/if} + +{/if}