CSR-2182: fix recursive error
This commit is contained in:
parent
737ef41ad1
commit
52c9bfecf7
1 changed files with 2 additions and 2 deletions
|
|
@ -302,9 +302,9 @@ export default {
|
||||||
},
|
},
|
||||||
lineItemsWithoutRecal() {
|
lineItemsWithoutRecal() {
|
||||||
if (!this.lineItems || this.lineItems.length < 1) return;
|
if (!this.lineItems || this.lineItems.length < 1) return;
|
||||||
const lineItemsCopy = this.lineItems;
|
const lineItemsCopy = deepClone(this.lineItems);
|
||||||
lineItemsCopy.supportingItems = baseMixin.methods.filterOutRecalibration(
|
lineItemsCopy.supportingItems = baseMixin.methods.filterOutRecalibration(
|
||||||
this.lineItems.supportingItems
|
lineItemsCopy.supportingItems
|
||||||
);
|
);
|
||||||
return lineItemsCopy;
|
return lineItemsCopy;
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue