Skip to content

Commit 00f322d

Browse files
authored
Merge pull request #1408 from topcoder-platform/justin-fixes
Billing account tab switching fix
2 parents a4305e0 + 35755eb commit 00f322d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/ChallengesComponent/ChallengeList/ChallengeList.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
}
3131
.active {
3232
color: #008000;
33+
text-transform: uppercase;
3334
}
3435
.inactive {
3536
color: #BE405E;

src/components/ChallengesComponent/ChallengeList/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class ChallengeList extends Component {
178178
<div className={styles.row}>
179179
{!isBillingAccountLoading && !isBillingAccountLoadingFailed && !isBillingAccountExpired && (
180180
<div className={'col-9'}>
181-
<span className={styles.title}>Billing Account: </span><span className={styles.active}>{status}</span> &nbsp; <span className={styles.title}>Start Date:</span> {billingStartDate} &nbsp; <span className={styles.title}>End Date:</span> {billingEndDate}
181+
<span className={styles.title}>Billing Account: </span><span className={styles.active}>{activeProject.status}</span> &nbsp; <span className={styles.title}>Start Date:</span> {billingStartDate} &nbsp; <span className={styles.title}>End Date:</span> {billingEndDate}
182182
</div>
183183
)}
184184
{!isBillingAccountLoading && !isBillingAccountLoadingFailed && isBillingAccountExpired && (

0 commit comments

Comments
 (0)