Skip to content

Commit

Permalink
Version update: 4.1.0 (#712)
Browse files Browse the repository at this point in the history
* Version update: 4.1.0

- Version update: 4.1.0

* - hotfix for axe ACC error
  • Loading branch information
shaunmaharaj authored May 21, 2020
1 parent 5b98271 commit a9a448e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elasticpath/ref-store",
"version": "4.0.0",
"version": "4.1.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elasticpath/store-components",
"version": "1.1.75",
"version": "2.0.0",
"main": "build/cjs/index",
"main:src": "src/index",
"types": "build/types/components/src/index",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class ProductListItemMain extends Component<ProductListItemMainProps, ProductLis
return (
<div className="category-item-inner">
<div className={`category-item-thumbnail-container ${imageStatus === 'loaded' ? 'loaded' : ''}`}>
<Link to={`${itemDetailLink}/${encodeURIComponent(productData._code[0].code)}`}>
<Link to={`${itemDetailLink}/${encodeURIComponent(productData._code[0].code)}`} title={productData._definition[0]['display-name']}>
<ImageContainer
imgClassName="category-item-thumbnail img-responsive"
isSkuImage
Expand Down

0 comments on commit a9a448e

Please sign in to comment.