diff --git a/web/satellite/src/components/account/billing/billingHistory/BillingItem.vue b/web/satellite/src/components/account/billing/billingHistory/BillingItem.vue index 4a5be0151..0fce4ce01 100644 --- a/web/satellite/src/components/account/billing/billingHistory/BillingItem.vue +++ b/web/satellite/src/components/account/billing/billingHistory/BillingItem.vue @@ -15,14 +15,14 @@ {{ billingItem.quantity.currency }} - {{ billingItem.quantity.received }} + {{ billingItem.quantity.received.toFixed(2) }} - {{ billingItem.quantity.total }} + {{ billingItem.quantity.total.toFixed(2) }} - of {{ billingItem.quantity.total }} + of {{ billingItem.quantity.total.toFixed(2) }}

diff --git a/web/satellite/src/components/account/billing/billingHistory/SortingHeader.vue b/web/satellite/src/components/account/billing/billingHistory/SortingHeader.vue index 8a09e9619..6cef6a39d 100644 --- a/web/satellite/src/components/account/billing/billingHistory/SortingHeader.vue +++ b/web/satellite/src/components/account/billing/billingHistory/SortingHeader.vue @@ -15,7 +15,9 @@

Amount

-
+
+

Download

+
@@ -60,8 +62,8 @@ export default class SortingHeader extends Vue {} } .download { + text-align: right; margin: 0; - min-width: 130px; - width: 10%; + min-width: 10%; } diff --git a/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/BillingItem.spec.ts.snap b/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/BillingItem.spec.ts.snap index 5680baad9..491a0a94b 100644 --- a/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/BillingItem.spec.ts.snap +++ b/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/BillingItem.spec.ts.snap @@ -10,7 +10,7 @@ exports[`BillingItem renders correctly if charge 1`] = `

USD $ - 5 + 5.00

@@ -28,7 +28,7 @@ exports[`BillingItem renders correctly if invoice 1`] = `

USD $ - 5 + 5.00

@@ -46,10 +46,9 @@ exports[`BillingItem renders correctly if transaction 1`] = `

USD $ - 5 + 5.00 - of 5 -

+ of 5.00

Checkout

`; diff --git a/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/SortingHeader.spec.ts.snap b/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/SortingHeader.spec.ts.snap index 5712c6de5..9b8c18ac8 100644 --- a/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/SortingHeader.spec.ts.snap +++ b/web/satellite/tests/unit/account/billing/billingHistory/__snapshots__/SortingHeader.spec.ts.snap @@ -14,6 +14,8 @@ exports[`SortingHeader renders correctly 1`] = `

Amount

-
+
+

Download

+
`;