Not in love with this.

this  new gitkraken ui update is terrible.
This commit is contained in:
Bill Richardson 2024-06-18 09:05:05 -04:00
parent f41b9afcf7
commit 76a413a05d

View file

@ -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;