diff --git a/src/blobs/props.ts b/src/blobs/props.ts index 9ef3b2b..c637b37 100644 --- a/src/blobs/props.ts +++ b/src/blobs/props.ts @@ -56,7 +56,9 @@ export function diffPartitionProps(partPropsRef: PartitionProps, partPropsNew: P for (let [newKey, newValue] of propsNew.entries()) { if (propsRef?.has(newKey)) { let refValue = propsRef.get(newKey)! - changes.modified.set(newKey, [refValue, newValue]) + if (newValue != refValue) { + changes.modified.set(newKey, [refValue, newValue]) + } } else { changes.added.set(newKey, newValue) }