From ecb475c8c37c1e49a1da6669cf8d1bf41da92d6c Mon Sep 17 00:00:00 2001 From: Clark Sell Date: Fri, 29 Sep 2023 11:23:27 -0500 Subject: [PATCH 1/2] fix: schedule headers --- src/_components/activities/List.svelte | 19 ++++++++++++++----- src/app.html | 2 +- src/routes/+layout.svelte | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/src/_components/activities/List.svelte b/src/_components/activities/List.svelte index 49fa959..7cb890b 100644 --- a/src/_components/activities/List.svelte +++ b/src/_components/activities/List.svelte @@ -248,13 +248,22 @@ {#if sorted.length} {#each sorted as day}
-

- {dayjs(day.dayOfYear).format("dddd, MMMM D, 'YY")} -

+ {dayjs(day.dayOfYear).format("dddd, MMMM D, 'YY")} + + {:else} +

+ Unscheduled +

+ {/if} {#each day.timeSlots as ts}
diff --git a/src/app.html b/src/app.html index 6d5b239..66d57ff 100644 --- a/src/app.html +++ b/src/app.html @@ -2,7 +2,7 @@ - + diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 30a1114..ac61c4d 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -115,7 +115,7 @@
{/if}
-
+
From a600c5e201ff45ae3f66b225b0405462003aeb17 Mon Sep 17 00:00:00 2001 From: Brett Slaski Date: Fri, 29 Sep 2023 12:52:22 -0500 Subject: [PATCH 2/2] chore: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ba3895..6b3b6eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thatconference.com", - "version": "5.0.2", + "version": "5.0.3", "description": "THATConference.com website", "main": "index.js", "type": "module",