Change system information table

This commit is contained in:
Caleb
2025-05-16 18:36:39 -04:00
committed by Cooper Quintin
parent 4982463b57
commit 51327917b0
7 changed files with 34 additions and 20 deletions

View File

@@ -4,10 +4,9 @@
import Card from "./ManifestCard.svelte"
interface Props {
entries: ManifestEntry[];
current_entry: ManifestEntry | undefined;
server_is_recording: boolean;
}
let { entries, current_entry, server_is_recording }: Props = $props();
let { entries, server_is_recording }: Props = $props();
</script>
<!--For larger screens we use a table-->