diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-05-16 15:29:00 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+joeacarstairs@users.noreply.github.com> | 2024-05-20 14:37:00 +0100 |
| commit | 18ca32b20266c6bece7022a52534d448ddd91214 (patch) | |
| tree | be8972befd3b989e1cfe1544b239c9dfae49959c /src/components/Schedule.astro | |
| parent | 99f0189d1ba7b898f0fe08513f5adba9b2cdfb8b (diff) | |
Improve Schedule component
Diffstat (limited to 'src/components/Schedule.astro')
| -rw-r--r-- | src/components/Schedule.astro | 4 |
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} /> </> )) } |
