summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+joeacarstairs@users.noreply.github.com>2024-05-20 14:38:06 +0100
committerGitHub <noreply@github.com>2024-05-20 14:38:06 +0100
commit3cf3a409e21253536cdc7183a944b1ce0dd6a759 (patch)
tree246560cd60720b79c437bfe58581cd5c983b93fa /src/components
parent99f0189d1ba7b898f0fe08513f5adba9b2cdfb8b (diff)
parent99ee79834c77dec7eeda6e980f831cc304eba4f2 (diff)
Merge pull request #94 from joeacarstairs/staging
Collogue programme
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Schedule.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Schedule.astro b/src/components/Schedule.astro
index 6b7c405..e4d90db 100644
--- a/src/components/Schedule.astro
+++ b/src/components/Schedule.astro
@@ -10,8 +10,8 @@ const { entries } = Astro.props;
{
entries.map((entry) => (
<>
- <dt>{entry.time}</dt>
- <dd>{entry.description}</dd>
+ <dt set:html={entry.time} />
+ <dd set:html={entry.description} />
</>
))
}