From d40d4fb9c16febc7b92f957e5526e55d2ae4f9f8 Mon Sep 17 00:00:00 2001 From: Caleb <57644769+alliraine@users.noreply.github.com> Date: Fri, 16 May 2025 19:30:27 -0400 Subject: [PATCH] Fix alignment for analysis views --- .../src/lib/components/AnalysisTable.svelte | 28 +++++++++---------- .../src/lib/components/AnalysisView.svelte | 4 +-- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/bin/web/src/lib/components/AnalysisTable.svelte b/bin/web/src/lib/components/AnalysisTable.svelte index da1dbf8..db96239 100644 --- a/bin/web/src/lib/components/AnalysisTable.svelte +++ b/bin/web/src/lib/components/AnalysisTable.svelte @@ -30,12 +30,12 @@ {#if report.statistics.num_warnings === 0 && report.statistics.num_informational_logs === 0}
Nothing to show!
{:else} -| Timestamp | -Warning | -Severity | +Timestamp | +Warning | +Severity | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {date_formatter.format(parsed_date)} | +{date_formatter.format(parsed_date)} | {event.message} | -{severity} | +{severity} | {:else if event.type === EventType.Informational} -{date_formatter.format(parsed_date)} | +{date_formatter.format(parsed_date)} | {event.message} | Info | {/if} @@ -64,20 +64,20 @@ {/if} {#if report.statistics.num_skipped_packets > 0} -
| # of messages affected | +# of messages affected | Reason/Error |
|---|---|---|
| {count} | +||
| {count} | {message} |