Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
missinglink committed Nov 12, 2021
1 parent c9528e2 commit d63073e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions helper/diffPlaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ const parentGID = (item, layer) => {
*/
function isEquivalentIdentity(item1, item2) {

// Both items must be on the same layer
if (item1.layer !== item2.layer) { return false; }

// Generate a GID value for each item
const gid1 = GID(item1);
const gid2 = GID(item2);
Expand Down

0 comments on commit d63073e

Please sign in to comment.