CSR-1384: reformat updates

This commit is contained in:
Adam Caouette 2023-10-10 10:24:28 -04:00
parent 2519b71732
commit f8f22fb619
2 changed files with 4 additions and 1 deletions

View file

@ -196,7 +196,10 @@ export default {
}, },
displayedNonPackageLineItems() { displayedNonPackageLineItems() {
const displayedNonPackageLineItems = []; const displayedNonPackageLineItems = [];
const possibleLineItems = [...this.vaps, ...this.supportingItems]; const possibleLineItems = [
...this.vaps,
...this.supportingItems,
];
possibleLineItems?.forEach((item) => { possibleLineItems?.forEach((item) => {
let price = item.sellingPrice + item.kitPrice + item.laborAmount; let price = item.sellingPrice + item.kitPrice + item.laborAmount;
const isAllowed = this.allowableLineItems?.findIndex((lineItem) => { const isAllowed = this.allowableLineItems?.findIndex((lineItem) => {