From b61b110c0b01791e58b7149065693d3191e17436 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 15 Jun 2023 21:42:26 +0100 Subject: [PATCH] Temporary fix to ldb page to allow test build --- src/routes/ldb/+page.svelte | 11 +++-------- svelte.config.js | 4 +--- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/src/routes/ldb/+page.svelte b/src/routes/ldb/+page.svelte index 294d398..ce416cf 100644 --- a/src/routes/ldb/+page.svelte +++ b/src/routes/ldb/+page.svelte @@ -10,17 +10,13 @@ return new URLSearchParams(window.location.search).get('station'); } - /** - * @type {any[]} - */ let jsonData = [] // Extract train data from the object to pass to #each onMount(async () => { const station = await getHeadcode(); document.getElementById('station').textContent = station; const data = await fetch(`https://owlboard.info/api/v1/ldb/${station}`); - const jsonData = await data.json()['GetStationBoardResult']; - //document.getElementById('data_raw').textContent = JSON.stringify(await data.json()); + jsonData = await data.json(); }) @@ -28,9 +24,8 @@

Station:

-{#each jsonData.trainServices.service as item} -

{item.operator}

-{/each} + +

{JSON.stringify(jsonData)}