Skip to content

Commit 35a4bdf

Browse files
Show repo names in Others tab
1 parent 1904a65 commit 35a4bdf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/routes/+page.svelte

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,8 +609,13 @@
609609
</Tooltip.Content>
610610
</Tooltip.Root>
611611
{:else}
612-
<span class="text-left text-lg group-hover:underline">
613-
{releaseName}
612+
<span class="flex flex-col text-left">
613+
<span class="text-lg group-hover:underline">{releaseName}</span>
614+
{#if releaseRepo && id === "others"}
615+
<span class="text-sm text-muted-foreground">
616+
{releaseRepo.repoName}
617+
</span>
618+
{/if}
614619
</span>
615620
{/if}
616621
<div class="flex items-center gap-2 xs:hidden">

0 commit comments

Comments
 (0)