Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

Commit

Permalink
[#155003820] Basket subtotal text in BasketSummary reverted back to f…
Browse files Browse the repository at this point in the history
  • Loading branch information
otarza committed Apr 12, 2018
1 parent 48c9906 commit b6b12a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import BasketTotal from '../BasketTotal';

const BasketSummary = ({ total, currency, count, className }) => (
<p className={className}>
<strong> Basket subtotal: </strong>
Basket subtotal
{
count &&
<span>
{' '}({count} <FormattedPlural value={count} one="item" other="items" />)
</span>
}
<strong className="text-danger">
: <strong className="text-danger">
<BasketTotal total={total} currentCurrency={currency} />
</strong>
</p >
Expand Down

0 comments on commit b6b12a4

Please sign in to comment.