mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed email subscription label on account home
no issue - Hardcoded label was being used on account home for newsletter subscriptions status - Updated to use label based on subscribed status, same as profile page
This commit is contained in:
parent
a51052c320
commit
4b29d0ce15
1 changed files with 2 additions and 1 deletions
|
@ -235,6 +235,7 @@ class PaidAccountHomePage extends React.Component {
|
|||
default_payment_card_last4: defaultCardLast4
|
||||
} = subscriptions[0];
|
||||
|
||||
const label = subscribed ? 'Subscribed to email newsletters' : 'Not subscribed to email newsletters';
|
||||
return (
|
||||
<div className='gh-portal-list'>
|
||||
<section>
|
||||
|
@ -264,7 +265,7 @@ class PaidAccountHomePage extends React.Component {
|
|||
<section>
|
||||
<div className='gh-portal-list-detail'>
|
||||
<h3>Newsletter</h3>
|
||||
<p>Not subscribed to email newsletters</p>
|
||||
<p>{label}</p>
|
||||
</div>
|
||||
<div>
|
||||
<Switch onToggle={(e) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue