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; return !this.showAsPaid ? 0 : this.total;
}, },
availableLineItems() { availableLineItems() {
const vapsToUse = this.availableVaps ?? this.lineItems.vaps;
const { supportingItems, glassParts, otherParts, feeItems } = this.lineItems; const { supportingItems, glassParts, otherParts, feeItems } = this.lineItems;
const result = [ const result = [
...(supportingItems ?? []), ...(supportingItems ?? []),
...(glassParts ?? []), ...(glassParts ?? []),
...(otherParts ?? []), ...(otherParts ?? []),
...(this.availableVaps ?? []), ...(vapsToUse ?? []),
...(feeItems ?? []) ...(feeItems ?? [])
]; ];
return result; return result;