We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a9fd6 commit 00a2515Copy full SHA for 00a2515
1 file changed
plugins/notion/src/data.ts
@@ -233,8 +233,13 @@ export async function syncCollection(
233
234
// Skip field value if the item has not changed and the field type has not changed.
235
// Always synced property types are never skipped.
236
- if (isUnchanged && !updatedFieldIds.has(field.id) && !alwaysSyncedPropertyTypes.includes(property.type))
+ if (
237
+ isUnchanged &&
238
+ !updatedFieldIds.has(field.id) &&
239
+ !alwaysSyncedPropertyTypes.includes(property.type)
240
+ ) {
241
continue
242
+ }
243
244
const fieldEntry = getFieldDataEntryForProperty(property, field)
245
if (fieldEntry) {
0 commit comments