design-comuni-plone-theme 8.4.5 → 8.4.6
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,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [8.4.6](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.5...v8.4.6) (2023-08-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* changed conditions for campo importi in CT persona ([65931ac](https://github.com/redturtle/design-comuni-plone-theme/commit/65931acb8d1d8a6e12444067573380b639f03291))
|
|
9
|
+
|
|
3
10
|
## [8.4.5](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.4...v8.4.5) (2023-08-30)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -155,7 +155,8 @@ const PersonaRuolo = ({ content }) => {
|
|
|
155
155
|
)}
|
|
156
156
|
data={content.incarichi_persona[0].importi_di_viaggio_e_o_servizi}
|
|
157
157
|
>
|
|
158
|
-
{content.incarichi_persona[0]?.
|
|
158
|
+
{content.incarichi_persona[0]?.importi_di_viaggio_e_o_servizi
|
|
159
|
+
?.length > 0 && (
|
|
159
160
|
<div className="compensi-item mb-2">
|
|
160
161
|
<div className="card-wrapper card-teaser-wrapper card-teaser-wrapper-equal">
|
|
161
162
|
{content.incarichi_persona[0]?.importi_di_viaggio_e_o_servizi.map(
|