From ed955150df80c65e39ec9517fc06db706e07dfc6 Mon Sep 17 00:00:00 2001 From: Becods Date: Thu, 16 May 2024 10:43:02 +0800 Subject: [PATCH 1/2] [F] If id is 0, skip --- AquaNet/src/components/MapDetails.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AquaNet/src/components/MapDetails.svelte b/AquaNet/src/components/MapDetails.svelte index 6a598378..3bca1452 100644 --- a/AquaNet/src/components/MapDetails.svelte +++ b/AquaNet/src/components/MapDetails.svelte @@ -26,6 +26,7 @@ let gameIndex = gameIndexMap[game as keyof typeof gameIndexMap]; +{#if mapData[0] !== 0}
@@ -55,6 +56,7 @@
+{/if}