Skip to content

Commit

Permalink
Make ids in event history mono for better spacing (#2425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman authored Nov 12, 2024
1 parent 6276fd5 commit 08dc657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/event/event-summary-row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
on:click|stopPropagation={onLinkClick}
>
{#if isEventGroup(event)}
<td class="w-24 min-w-fit">
<td class="w-24 min-w-fit font-mono">
<div class="flex items-center gap-0.5">
{#each event.eventList as groupEvent}
<Link
Expand All @@ -141,7 +141,7 @@
</div>
</td>
{:else}
<td>
<td class="font-mono">
<Link data-testid="link" {href}>
{event.id}
</Link>
Expand Down

0 comments on commit 08dc657

Please sign in to comment.