Skip to content

Commit

Permalink
Merge pull request #379 from Mkellyeng/develop
Browse files Browse the repository at this point in the history
Resolution for the Internal ID bug
  • Loading branch information
bgschiller authored Mar 23, 2021
2 parents b1fc006 + 8799f0c commit fe341ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/utilities/importFloorplan.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function importFloorplan(context, payload) {
let largestId = 0;
forEachNestedProp(payload, (k, v) => {
if (k && k === 'id' && (+v > largestId)) {
largestId = v;
largestId = +v;
}
});

Expand Down

0 comments on commit fe341ea

Please sign in to comment.