Skip to content

Commit

Permalink
web/satellite: fix inactive buttons on billing page
Browse files Browse the repository at this point in the history
This change fixes makes the "See Payment" and "Edit payment method" on the billing page
navigate to the correct corresponding pages.

Change-Id: Ia2045394643d11171cc8ad5ded6654c4293875d6
  • Loading branch information
wilfred-asomanii authored and Storj Robot committed Aug 17, 2022
1 parent c59d0d4 commit 874e28e
Showing 1 changed file with 7 additions and 5 deletions.
Expand Up @@ -4,7 +4,7 @@
<template>
<div>
<div class="total-cost">
<div class="total-cost__header-container">
<div class="total-cost__header-container">
<h3 class="total-cost__header-container__title">Total Cost</h3>
<div class="total-cost__header-container__date"><CalendarIcon />&nbsp;&nbsp;{{ currentDate }}</div>
</div>
Expand All @@ -13,14 +13,14 @@
<EstimatedChargesIcon class="total-cost__card__main-icon" />
<p class="total-cost__card__money-text">{{ priceSummary | centsToDollars }}</p>
<p class="total-cost__card__label-text">
Total Estimated Charges
<img
Total Estimated Charges
<img
src="@/../static/images/common/smallGreyWhiteInfo.png"
@mouseenter="showChargesTooltip = true"
@mouseleave="showChargesTooltip = false"
>
</p>
<div
<div
v-if="showChargesTooltip"
class="total-cost__card__charges-tooltip"
>
Expand Down Expand Up @@ -57,15 +57,17 @@
icon="lock"
:is-transparent="true"
class="cost-by-project__buttons__none-assigned"
:on-press="routeToPaymentMethods"
/>
<v-button
label="See Payment"
label="See Payments"
font-size="13px"
width="auto"
height="30px"
icon="document"
:is-transparent="true"
class="cost-by-project__buttons__none-assigned"
:on-press="routeToBillingHistory"
/>
</div>
<div class="usage-charges-item-container__detailed-info-container__footer__buttons">
Expand Down

1 comment on commit 874e28e

@storjrobot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit has been mentioned on Storj Community Forum (official). There might be relevant details there:

https://forum.storj.io/t/release-preparation-v1-62/19444/1

Please sign in to comment.