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} |