diff --git a/daemon/web/src/lib/components/AnalysisTable.svelte b/daemon/web/src/lib/components/AnalysisTable.svelte
index bf9b727..c15d7b9 100644
--- a/daemon/web/src/lib/components/AnalysisTable.svelte
+++ b/daemon/web/src/lib/components/AnalysisTable.svelte
@@ -33,45 +33,49 @@
{#if report.statistics.num_warnings === 0 && report.statistics.num_informational_logs === 0}
Nothing to show!
{:else}
-
-
-
- Timestamp
- Heuristic
- Warning
- Severity
-
-
-
- {#each report.rows as row}
- {#if row.type === AnalysisRowType.Analysis}
- {@const parsed_date = new Date(row.packet_timestamp)}
- {#each row.events.filter((e) => e !== null) as event, i}
- {@const analyzer = analyzers[i]}
-
- {#if event.type === EventType.Warning}
- {@const severity = ['Low', 'Medium', 'High'][event.severity]}
- {@const severity_class = [
- 'bg-red-200',
- 'bg-red-400',
- 'bg-red-600',
- ][event.severity]}
- {date_formatter.format(parsed_date)}
- {analyzer.name} v{analyzer.version}
- {event.message}
- {severity}
- {:else if event.type === EventType.Informational}
- {date_formatter.format(parsed_date)}
- {analyzer.name} v{analyzer.version}
- {event.message}
- Info
- {/if}
-
- {/each}
- {/if}
- {/each}
-
-
+
{/if}
{#if report.statistics.num_skipped_packets > 0}
@@ -81,21 +85,23 @@
These are due to a limitation or bug in Rayhunter's parser, and aren't ususally a
problem.
-
-
-
- Total Msgs Affected
- Reason/Error
-
-
-
- {#each skipped_messages.entries() as [message, count]}
-
- {count}
- {message}
+
+
{/if}
diff --git a/daemon/web/src/lib/components/DeleteButton.svelte b/daemon/web/src/lib/components/DeleteButton.svelte
index 5e12941..72656a0 100644
--- a/daemon/web/src/lib/components/DeleteButton.svelte
+++ b/daemon/web/src/lib/components/DeleteButton.svelte
@@ -18,7 +18,7 @@
diff --git a/daemon/web/src/lib/components/DownloadLink.svelte b/daemon/web/src/lib/components/DownloadLink.svelte
index 8b58354..f42f586 100644
--- a/daemon/web/src/lib/components/DownloadLink.svelte
+++ b/daemon/web/src/lib/components/DownloadLink.svelte
@@ -16,7 +16,7 @@
diff --git a/daemon/web/src/lib/components/ManifestCard.svelte b/daemon/web/src/lib/components/ManifestCard.svelte
index befbe39..ba5e4c0 100644
--- a/daemon/web/src/lib/components/ManifestCard.svelte
+++ b/daemon/web/src/lib/components/ManifestCard.svelte
@@ -41,7 +41,7 @@
{#if current}
@@ -78,7 +78,7 @@
'N/A'}
-
+
diff --git a/daemon/web/src/lib/components/RecordingControls.svelte b/daemon/web/src/lib/components/RecordingControls.svelte
index 6e0a639..3772fe2 100644
--- a/daemon/web/src/lib/components/RecordingControls.svelte
+++ b/daemon/web/src/lib/components/RecordingControls.svelte
@@ -20,7 +20,7 @@
}
const recording_button_classes =
- 'text-white font-bold py-2 px-4 rounded-md flex flex-row gap-1';
+ 'text-white font-bold py-2 px-2 sm:px-4 rounded-md flex flex-row gap-1';
const stop_recording_classes = `${recording_button_classes} bg-red-500 opacity-50 cursor-not-allowed`;
const start_recording_classes = `${recording_button_classes} bg-blue-500 opacity-50 cursor-not-allowed`;