design-comuni-plone-theme 11.25.1 → 11.25.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/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.25.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.25.1...v11.25.2) (2024-11-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* added conditional chaining to images for uo in argomento view ([#823](https://github.com/RedTurtle/design-comuni-plone-theme/issues/823)) ([27b1545](https://github.com/RedTurtle/design-comuni-plone-theme/commit/27b15454cc9567e3c220e7b1ffa9d1746045510f))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* updated publiccode ([e57f337](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e57f3374c5218b4ee67aec1b59f8917cb8625828))
|
|
14
|
+
|
|
3
15
|
## [11.25.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.25.0...v11.25.1) (2024-11-28)
|
|
4
16
|
|
|
5
17
|
|
package/package.json
CHANGED
package/publiccode.yml
CHANGED
|
@@ -229,7 +229,7 @@ platforms:
|
|
|
229
229
|
- web
|
|
230
230
|
releaseDate: '2024-11-28'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 11.25.
|
|
232
|
+
softwareVersion: 11.25.2
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -109,8 +109,8 @@ const PaginaArgomentoView = ({ content }) => {
|
|
|
109
109
|
</CardText>
|
|
110
110
|
</CardBody>
|
|
111
111
|
{uo_object &&
|
|
112
|
-
(uo_object.image_scales
|
|
113
|
-
uo_object.image_scales
|
|
112
|
+
(uo_object.image_scales?.image?.length > 0 ||
|
|
113
|
+
uo_object.image_scales?.preview_image?.length >
|
|
114
114
|
0) && (
|
|
115
115
|
<div className="image-container me-3">
|
|
116
116
|
<Image
|