design-comuni-plone-theme 8.4.1 → 8.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/publiccode.yml +1 -1
- package/src/components/Image/helpers.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [8.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.1...v8.4.2) (2023-08-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* more external url fixes for images ([dc6da3a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dc6da3ac832bec31c372cc854ff6b199df32273e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* updated publiccode ([ad343ef](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ad343ef38c2d893c7ec7222c2e24baa7139ef4aa))
|
|
14
|
+
|
|
3
15
|
## [8.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.0...v8.4.1) (2023-08-24)
|
|
4
16
|
|
|
5
17
|
|
package/package.json
CHANGED
package/publiccode.yml
CHANGED
|
@@ -118,7 +118,7 @@ export const getImageAttributes = (
|
|
|
118
118
|
case 'internalUrl':
|
|
119
119
|
let baseUrl = `@@images/${imageField}`;
|
|
120
120
|
if (isFromBrain) baseUrl = `${itemPath}${baseUrl}`;
|
|
121
|
-
else baseUrl = `${image.split('
|
|
121
|
+
else baseUrl = `${image.split('/@@images')[0]}/${baseUrl}`;
|
|
122
122
|
baseUrl = flattenToAppURL(baseUrl);
|
|
123
123
|
|
|
124
124
|
attrs.src = `${baseUrl}/${minScale}`;
|