mirror of
https://github.com/mfocko/blog.git
synced 2025-05-02 09:25:26 +02:00
fix(talks): correct months
Months are zero-indexed in the ‹Date› constructor… Is this some kind of a joke??? Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
6d2fbe704a
commit
0be9e55b03
1 changed files with 2 additions and 2 deletions
|
@ -20,12 +20,12 @@ const talks: TalkMetadata[] = [
|
||||||
{
|
{
|
||||||
name: "DevConf.cz",
|
name: "DevConf.cz",
|
||||||
location: "Brno, Czechia",
|
location: "Brno, Czechia",
|
||||||
date: new Date(2023, 6, 17),
|
date: new Date(2023, 5, 17),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "DevConf.cz Mini",
|
name: "DevConf.cz Mini",
|
||||||
location: "Brno, Czechia",
|
location: "Brno, Czechia",
|
||||||
date: new Date(2023, 3, 31),
|
date: new Date(2023, 2, 31),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
recordingURL: "https://www.youtube.com/watch?v=FxhXzgxWO18",
|
recordingURL: "https://www.youtube.com/watch?v=FxhXzgxWO18",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue