Skip to content

Commit

Permalink
Merge 6017473 into 620603f
Browse files Browse the repository at this point in the history
  • Loading branch information
klzns committed Aug 9, 2019
2 parents 620603f + 6017473 commit 4e069e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Interaction with the quantity input in the minicart was trigerring the link.

## [2.32.0] - 2019-08-06
### Added
Expand Down
5 changes: 5 additions & 0 deletions react/legacy/components/ProductSummaryInlinePrice.js
Expand Up @@ -87,6 +87,11 @@ const ProductSummaryInlinePrice = ({
<AttachmentList product={product} />
<div className="mv3 nr2">
<div
onClick={e => {
e.preventDefault()
// Stop propagation so it doesn't trigger the Link component above
e.stopPropagation()
}}
className={`flex justify-end nr4 mb2 ${styles.quantityStepperContainer}`}
>
{showQuantitySelector && (
Expand Down

0 comments on commit 4e069e1

Please sign in to comment.