@eeacms/volto-cca-policy 0.3.21 → 0.3.22
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
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [0.3.22](https://github.com/eea/volto-cca-policy/compare/0.3.21...0.3.22) - 27 March 2025
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: refs #286159 adjust ContextNavigation topLevel and bottomLevel [laszlocseh - [`890392b`](https://github.com/eea/volto-cca-policy/commit/890392b20499fa570b56e1ef3b2b9afd143f5121)]
|
|
12
|
+
|
|
7
13
|
### [0.3.21](https://github.com/eea/volto-cca-policy/compare/0.3.20...0.3.21) - 26 March 2025
|
|
8
14
|
|
|
9
15
|
#### :rocket: Dependency updates
|
package/package.json
CHANGED
|
@@ -102,8 +102,8 @@ const DefaultView = (props) => {
|
|
|
102
102
|
name: currentNavigation.title,
|
|
103
103
|
includeTop: false,
|
|
104
104
|
// currentFolderOnly: true,
|
|
105
|
-
topLevel: currentNavigation.topLevel,
|
|
106
|
-
bottomLevel: currentNavigation.bottomLevel,
|
|
105
|
+
topLevel: currentNavigation.topLevel + 1,
|
|
106
|
+
bottomLevel: currentNavigation.bottomLevel + 1,
|
|
107
107
|
rootPath: `${currentLang}/${currentNavigation.rootPath}`,
|
|
108
108
|
}}
|
|
109
109
|
/>
|