We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8023b6a commit a6be9c3Copy full SHA for a6be9c3
1 file changed
dist/index.js
@@ -20825,7 +20825,7 @@ const loadData = async ({ notion }) => {
20825
const processRows = (data) => {
20826
const parent = {}
20827
data.results.forEach((row) => {
20828
- const name = row.properties.Name.title[0].plain_text.toLowerCase()
+ const name = row.properties.Name?.title[0]?.plain_text?.toLowerCase()
20829
if (name) parent[name] = row.id
20830
})
20831
return parent
0 commit comments