Skip to content

Commit

Permalink
fix(frontmatter): change datetime fields to string
Browse files Browse the repository at this point in the history
To support EDTF dates
  • Loading branch information
jmiguelv committed Nov 10, 2023
1 parent 9a67575 commit 7359093
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontmatter.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@
{
"title": "Start date of the donation",
"name": "startTime",
"type": "number"
"type": "string"
},
{
"title": "End date of the donation",
"name": "endTime",
"type": "number"
"type": "string"
}
]
},
Expand Down Expand Up @@ -200,12 +200,12 @@
{
"title": "startDate",
"name": "startDate",
"type": "datetime"
"type": "string"
},
{
"title": "endDate",
"name": "endDate",
"type": "datetime"
"type": "string"
},
{
"title": "tags",
Expand Down

0 comments on commit 7359093

Please sign in to comment.