show empty rewards message on overview page #847

Merged
neb-b merged 2 commits from empty-rewards into master 2017-12-12 05:58:10 +01:00
Showing only changes of commit 33e49d86cc - Show all commits

View file

@ -11,12 +11,14 @@ const RewardSummary = props => {
<h3>{__("Rewards")}</h3>
</div>
<div className="card__content">
{unclaimedRewardAmount > 0 && (
{unclaimedRewardAmount > 0 ? (
<p>
You have{" "}
<CreditAmount amount={unclaimedRewardAmount} precision={8} /> in
unclaimed rewards.
{__("You have")}{" "}
<CreditAmount amount={unclaimedRewardAmount} precision={8} />
{" "}{__("in unclaimed rewards")}.
</p>
) : (
<p>{__("There are no rewards available at this time, please check back later")}.</p>
)}
</div>
<div className="card__actions">