Skip to content

Commit

Permalink
chore(release): 1.3.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.3.1](v1.3.0...v1.3.1) (2023-10-02)

### Bug Fixes

* use correct codeBasePath (and test) ([#19](#19)) ([11dc7d3](11dc7d3))
  • Loading branch information
semantic-release-bot committed Oct 2, 2023
1 parent 11dc7d3 commit ce4e3b7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.3.1](https://github.com/adobe/aem-lib/compare/v1.3.0...v1.3.1) (2023-10-02)


### Bug Fixes

* use correct codeBasePath (and test) ([#19](https://github.com/adobe/aem-lib/issues/19)) ([11dc7d3](https://github.com/adobe/aem-lib/commit/11dc7d37e551ba8e229c1147e1c5618f7fe84bf1))

# [1.3.0](https://github.com/adobe/aem-lib/compare/v1.2.1...v1.3.0) (2023-09-27)


Expand Down
2 changes: 1 addition & 1 deletion dist/aem.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ function decorateIcon(span, prefix = '') {
.substring(5);
const img = document.createElement('img');
img.dataset.iconName = iconName;
img.src = `${window.codeBasePath}${prefix}/icons/${iconName}.svg`;
img.src = `${window.hlx.codeBasePath}${prefix}/icons/${iconName}.svg`;
img.loading = 'lazy';
span.append(img);
}
Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@adobe/aem-lib",
"private": true,
"version": "1.3.0",
"version": "1.3.1",
"description": "AEM Library",
"type": "module",
"scripts": {
Expand Down

0 comments on commit ce4e3b7

Please sign in to comment.