@eeacms/volto-clms-theme 1.1.135 → 1.1.136
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.136](https://github.com/eea/volto-clms-theme/compare/1.1.135...1.1.136) - 10 April 2024
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: CLMS-3195 first source system of the dataset selected as default if there are more then one! [Unai Etxaburu - [`c48fcd5`](https://github.com/eea/volto-clms-theme/commit/c48fcd5d384f3a05fcec3576b12ecd96f3f78354)]
|
|
12
|
+
|
|
7
13
|
### [1.1.135](https://github.com/eea/volto-clms-theme/compare/1.1.134...1.1.135) - 10 April 2024
|
|
8
14
|
|
|
9
15
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -425,7 +425,9 @@ const CLMSCartContent = (props) => {
|
|
|
425
425
|
<Select
|
|
426
426
|
placeholder="Select projection"
|
|
427
427
|
// value={item?.projection}
|
|
428
|
-
defaultValue={
|
|
428
|
+
defaultValue={
|
|
429
|
+
item?.original_projection.split('/')[0]
|
|
430
|
+
}
|
|
429
431
|
options={
|
|
430
432
|
projections_uid?.[item.dataset_uid] &&
|
|
431
433
|
projections_uid[item.dataset_uid].length > 0 &&
|