design-comuni-plone-theme 10.1.0 → 10.1.1
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
|
+
## [10.1.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.1.0...v10.1.1) (2023-11-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fix sideMenuByTitles to remove duplicate text title when it is hidden ([9da33c8](https://github.com/redturtle/design-comuni-plone-theme/commit/9da33c8d5f5470e20873a04e5963d66a3cc46515))
|
|
9
|
+
|
|
3
10
|
## [10.1.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.0.0...v10.1.0) (2023-11-06)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -33,14 +33,6 @@ const extractHeaders = (elements, intl) => {
|
|
|
33
33
|
item = elements[index];
|
|
34
34
|
|
|
35
35
|
if (item.id === 'text-body') {
|
|
36
|
-
headers.push({
|
|
37
|
-
id: item.id,
|
|
38
|
-
title:
|
|
39
|
-
item.getAttribute('menu_title') ||
|
|
40
|
-
intl.formatMessage(messages.contenuto),
|
|
41
|
-
item: item,
|
|
42
|
-
});
|
|
43
|
-
|
|
44
36
|
const h = item.getElementsByTagName('h2');
|
|
45
37
|
|
|
46
38
|
for (var hi = 0; hi < h.length; hi++) {
|