Skip to content

Commit 6f00c75

Browse files
committed
fix: Time formatting bug in CardEvent.astro
Due `date` content format in `events.json`, date info has been splitted out inside `CardEvent.astro` to bypass event hour
1 parent 4f97bb8 commit 6f00c75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/CardEvent.astro

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const {
1616
} = Astro.props as Event;
1717
1818
const eventHeaderProps = { id, title, image, modality, description };
19+
const justDate = date.split("T");
1920
---
2021

2122
<CardBase {...eventHeaderProps}>
@@ -37,7 +38,7 @@ const eventHeaderProps = { id, title, image, modality, description };
3738
</svg>
3839
<span>
3940
{
40-
new Date(date).toLocaleDateString("es", {
41+
new Date(justDate[0]).toLocaleDateString("es-EC", {
4142
weekday: "long",
4243
year: "numeric",
4344
month: "long",

0 commit comments

Comments
 (0)