Skip to content

Commit

Permalink
Merge pull request #390 from reactioncommerce/fix-kieckhafer-CartSumm…
Browse files Browse the repository at this point in the history
…aryBlankDisplay

docs: add comments to CartSummary
  • Loading branch information
mikemurray authored Jan 24, 2019
2 parents 20523b2 + 07ea43c commit 3859b94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions package/src/components/CartSummary/v1/CartSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class CartSummary extends Component {
isFreeShipping
} = this.props;

// Use "-" to indicate we are still calculating this field.
const shipping = (isFreeShipping ? "FREE" : displayShipping) || "-";
const tax = displayTax || "-";
const header = !isDense && this.renderHeader();
Expand Down

0 comments on commit 3859b94

Please sign in to comment.