We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9e1cc commit c44847cCopy full SHA for c44847c
components/notion/common/notion-page-properties.mjs
@@ -69,7 +69,7 @@ const NOTION_PAGE_PROPERTIES = {
69
convertToNotion: (property) => ({
70
date: !(typeof (property.value) === "string")
71
? property.value
72
- : property.value.includes("start")
+ : property.value.trim().startsWith("{")
73
? JSON.parse(property.value)
74
: {
75
start: property.value,
0 commit comments