Skip to content

Commit

Permalink
Minor bug fixing in absoluteCompare util function
Browse files Browse the repository at this point in the history
  • Loading branch information
acc-cassio committed Dec 1, 2024
1 parent e72a51a commit 60b1af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/utils/ObjectUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ export default class ObjectUtils {
if (!objA || !objB) return true;
if (currentDepth > maxDepth) return true;

if (typeof aValue !== typeof bValue) return false;
if (typeof objA !== typeof objB) return false;

const aKeys = Object.keys(objA);
const bKeys = Object.keys(objB);
Expand Down

0 comments on commit 60b1af7

Please sign in to comment.