@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
|
@@ -424,7 +424,8 @@ const CLMSCartContent = (props) => {
|
|
|
424
424
|
{!item?.file_id ? (
|
|
425
425
|
<Select
|
|
426
426
|
placeholder="Select projection"
|
|
427
|
-
value={item?.
|
|
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 &&
|