Skip to content

Commit 35ec09d

Browse files
authored
fix: social events link
1 parent 47482c5 commit 35ec09d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/frontend/src/pages/program/social-events.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import { isObj } from '@bpm2025-website/shared/validation';
2121
id={k.name.replaceAll(' ', '-').toLowerCase()}>
2222
<Headline
2323
title={k.name}
24-
tagline={`📅 ${k.date} <br /> ${k.time}`}
24+
tagline={`📅 ${k.date} <br /> 🕒 ${k.time}`}
2525
subtitle={(() => {
2626
let result;
2727
if (isObj(k.location)) {
2828
result = k.location.address
29-
? `<a href="${k.location.address}" target="_blank" rel="noopener noreferrer" alt="${k.location.address}" class="hover:underline">${k.location.name}</a>`
29+
? `<a href="${k.location.href}" target="_blank" rel="noopener noreferrer" alt="${k.location.address}" class="hover:underline">${k.location.name}</a>`
3030
: k.location;
3131
}
3232

0 commit comments

Comments
 (0)