Skip to content

Commit e662260

Browse files
committed
fix: normalizing entries for comparison
1 parent 7a0076b commit e662260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin/src/containers/HomePage/helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const getComparisonString = (entry) => {
66
for (const field of internalFields) {
77
delete normalizedEntry[field]
88
}
9-
return JSON.stringify(entry, null, 2)
9+
return JSON.stringify(normalizedEntry, null, 2)
1010
}
1111

1212
const normalizeObject = (entry, attributes) => {

0 commit comments

Comments
 (0)