Skip to content

Commit

Permalink
show line between each alert
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Nov 17, 2024
1 parent ecd892f commit 77ce7eb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/serviceAlerts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export let alerts = {};
>
{#each Object.values(alerts) as alert}
<div class="pt-1">
<p>
<span>{$_(cause_id_str(alert.cause))}</span>
<span> | </span>
<p class="text-sm">
<span class="">{$_(cause_id_str(alert.cause))}</span>
<span> -> </span>
<span>{$_(effect_id_str(alert.effect))}</span>

</p>
Expand All @@ -35,6 +35,7 @@ export let alerts = {};
{/each}
{/each}
</div>
<hr/>
{/each}
</div>
{/if}

0 comments on commit 77ce7eb

Please sign in to comment.