design-comuni-plone-theme 8.4.4 → 8.4.5
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
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## [8.4.
|
|
3
|
+
## [8.4.5](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.4...v8.4.5) (2023-08-30)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* changed conditions for campo compensi in CT persona ([8b2c7c0](https://github.com/redturtle/design-comuni-plone-theme/commit/8b2c7c0ea2e2a8539c3e8ca16077d74539bc6f5d))
|
|
9
|
+
|
|
10
|
+
## [8.4.4](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.3...v8.4.4) (2023-08-30)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* removed link from last breadcrumb element ([a10237b](https://github.com/redturtle/design-comuni-plone-theme/commit/a10237bf697f84d12c0a95045f7203278e3cb42e))
|
|
9
16
|
|
|
10
17
|
## [8.4.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.2...v8.4.3) (2023-08-25)
|
|
11
18
|
|
package/package.json
CHANGED
|
@@ -109,7 +109,8 @@ const PersonaRuolo = ({ content }) => {
|
|
|
109
109
|
</RichTextSection>
|
|
110
110
|
)}
|
|
111
111
|
|
|
112
|
-
{richTextHasContent(content.incarichi_persona[0].compensi)
|
|
112
|
+
{(richTextHasContent(content.incarichi_persona[0].compensi) ||
|
|
113
|
+
content.incarichi_persona[0]?.compensi_file?.length > 0) && (
|
|
113
114
|
<RichTextSection
|
|
114
115
|
tag_id="compensi"
|
|
115
116
|
title={intl.formatMessage(messages.compensi)}
|