Removed debugger statements
This commit is contained in:
parent
72987d84c2
commit
2fa866953d
1 changed files with 0 additions and 2 deletions
|
|
@ -2656,9 +2656,7 @@ function syncLineItemIds(lineItemsWithoutIds, lineItemsWithIds) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
lineItemsWithoutIds.forEach((noId) => {
|
lineItemsWithoutIds.forEach((noId) => {
|
||||||
debugger; // eslint-disable-line no-debugger
|
|
||||||
lineItemsWithIds.forEach((withId) => {
|
lineItemsWithIds.forEach((withId) => {
|
||||||
debugger; // eslint-disable-line no-debugger
|
|
||||||
if (noId.partNumber === withId.partNumber && noId.partType === withId.partType) {
|
if (noId.partNumber === withId.partNumber && noId.partType === withId.partType) {
|
||||||
noId.id = withId.id;
|
noId.id = withId.id;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue