@eeacms/volto-n2k 1.1.11 → 1.1.12

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,11 +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
- ### [1.1.11](https://github.com/eea/volto-n2k/compare/1.1.10...1.1.11) - 26 January 2026
7
+ ### [1.1.12](https://github.com/eea/volto-n2k/compare/1.1.11...1.1.12) - 27 January 2026
8
8
 
9
- #### :bug: Bug Fixes
9
+ #### :hammer_and_wrench: Others
10
10
 
11
- - fix: z-index sidebar [Nilesh - [`8eeeb8c`](https://github.com/eea/volto-n2k/commit/8eeeb8c7f75ccfabdab9545f6a429ffc2ba1e65f)]
11
+ - rename lables for habitats priority [Claudia Ifrim - [`6822840`](https://github.com/eea/volto-n2k/commit/6822840653c41117dbbc3dae4c3a626c8ce69309)]
12
+ ### [1.1.11](https://github.com/eea/volto-n2k/compare/1.1.10...1.1.11) - 27 January 2026
12
13
 
13
14
  ### [1.1.10](https://github.com/eea/volto-n2k/compare/1.1.9...1.1.10) - 2 December 2025
14
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-n2k",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "volto-n2k: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -60,10 +60,10 @@ const ViewComponent = (props) => {
60
60
  return 'Conditional priority';
61
61
  }
62
62
  if (priority === null) {
63
- return 'Without priority';
63
+ return '';
64
64
  }
65
65
  if (priority === 1) {
66
- return 'With priority';
66
+ return 'Priority habitat';
67
67
  }
68
68
  }, [habitat_prioriy]);
69
69