Merge pull request #756 from Safelite/feature/richardson/SSR-1369
Not in love with this.
This commit is contained in:
commit
7e9a01ad53
1 changed files with 2 additions and 1 deletions
|
|
@ -255,12 +255,13 @@ export default {
|
|||
return !this.showAsPaid ? 0 : this.total;
|
||||
},
|
||||
availableLineItems() {
|
||||
const vapsToUse = this.availableVaps ?? this.lineItems.vaps;
|
||||
const { supportingItems, glassParts, otherParts, feeItems } = this.lineItems;
|
||||
const result = [
|
||||
...(supportingItems ?? []),
|
||||
...(glassParts ?? []),
|
||||
...(otherParts ?? []),
|
||||
...(this.availableVaps ?? []),
|
||||
...(vapsToUse ?? []),
|
||||
...(feeItems ?? [])
|
||||
];
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Reference in a new issue