@eeacms/volto-clms-theme 1.1.134 → 1.1.135

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
+ ### [1.1.135](https://github.com/eea/volto-clms-theme/compare/1.1.134...1.1.135) - 10 April 2024
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - fix CLMS-3195 defaultValue used instead of value [Unai Etxaburu - [`3d2182b`](https://github.com/eea/volto-clms-theme/commit/3d2182b979d97f962d270fc68d53ca6aa54893a6)]
12
+ - add noreferer [Mikel Larreategi - [`f23f91b`](https://github.com/eea/volto-clms-theme/commit/f23f91b8c22ecece1fd2c226fbe5d611c8e8fcef)]
7
13
  ### [1.1.134](https://github.com/eea/volto-clms-theme/compare/1.1.133...1.1.134) - 9 April 2024
8
14
 
9
15
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.134",
3
+ "version": "1.1.135",
4
4
  "description": "volto-clms-theme: Volto theme for CLMS site",
5
5
  "main": "src/index.js",
6
6
  "author": "CodeSyntax for the European Environment Agency",
@@ -424,7 +424,8 @@ const CLMSCartContent = (props) => {
424
424
  {!item?.file_id ? (
425
425
  <Select
426
426
  placeholder="Select projection"
427
- value={item?.original_projection.split('/')[0]}
427
+ // value={item?.projection}
428
+ defaultValue={item?.original_projection}
428
429
  options={
429
430
  projections_uid?.[item.dataset_uid] &&
430
431
  projections_uid[item.dataset_uid].length > 0 &&
@@ -234,6 +234,7 @@ export const CLMSMeetingSubscribersView = (props) => {
234
234
  className="ccl-button ccl-button--default"
235
235
  filename={content.id + '.csv'}
236
236
  target="_blank"
237
+ rel="noreferrer"
237
238
  >
238
239
  {intl.formatMessage(messages.download_selected)}
239
240
  </CSVLink>
@@ -35,6 +35,7 @@ const CLMSTechnicalLibraryView = (props) => {
35
35
  url={`${content['@id']}/@@download/file`}
36
36
  download={true}
37
37
  target="_blank"
38
+ rel="noreferrer"
38
39
  >
39
40
  Download File
40
41
  </CclButton>