CSR-2179: update to handle new updated recal parts from api
This commit is contained in:
parent
76b85d2064
commit
5c1e6b550a
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ export default {
|
|||
},
|
||||
filterOutRecalibration(lineItems) {
|
||||
const filteredLineItems = lineItems.filter((item) => {
|
||||
return item.partType != partTypeStrings.RECALIBRATION;
|
||||
return !item.partType.includes(partTypeStrings.RECALIBRATION);
|
||||
});
|
||||
return filteredLineItems;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue