Skip to content
Snippets Groups Projects
Commit 5be6f381 authored by Fernando Erd's avatar Fernando Erd :ok_hand:
Browse files

Merge branch 'hotfix_add_missing' into hotfix_v1.0.3

parents 696127e2 3e8dbb90
No related branches found
No related tags found
No related merge requests found
...@@ -55,9 +55,11 @@ module.exports = function addMissing(rqf){ ...@@ -55,9 +55,11 @@ module.exports = function addMissing(rqf){
if(r[rqfName] > newEntry[rqfName]) break; if(r[rqfName] > newEntry[rqfName]) break;
if(r[rqfName] == newEntry[rqfName] && r[rqfName2] > newEntry[rqfName2]) break; if(r[rqfName] == newEntry[rqfName] && r[rqfName2] > newEntry[rqfName2]) break;
} }
if (newEntry.dim1Value != undefined && newEntry.dim2Value != undefined) {
let newResult = [...result.slice(0, index), newEntry, ...result.slice(index, result.length)]; let newResult = [...result.slice(0, index), newEntry, ...result.slice(index, result.length)];
result = newResult; result = newResult;
} }
}
}); });
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment