@eeacms/volto-clms-theme 1.1.279 → 1.1.280
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,13 @@ 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.
|
|
7
|
+
### [1.1.280](https://github.com/eea/volto-clms-theme/compare/1.1.279...1.1.280) - 1 April 2026
|
|
8
8
|
|
|
9
9
|
#### :hammer_and_wrench: Others
|
|
10
10
|
|
|
11
|
-
- Refs #
|
|
11
|
+
- Refs #298235 - Use external source URL instead of item url in search app for external items. [GhitaB - [`8f70a98`](https://github.com/eea/volto-clms-theme/commit/8f70a983143029f0882368137f50d5f80b2d7ef8)]
|
|
12
|
+
### [1.1.279](https://github.com/eea/volto-clms-theme/compare/1.1.278...1.1.279) - 26 March 2026
|
|
13
|
+
|
|
12
14
|
### [1.1.278](https://github.com/eea/volto-clms-theme/compare/1.1.277...1.1.278) - 20 March 2026
|
|
13
15
|
|
|
14
16
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -28,8 +28,8 @@ const TechnicalLibraryItem = (props) => {
|
|
|
28
28
|
|
|
29
29
|
const external_source = result?._result?.external_source_url?.raw;
|
|
30
30
|
if (external_source !== undefined) {
|
|
31
|
-
|
|
32
|
-
item_url = `${result.href}`;
|
|
31
|
+
item_url = external_source;
|
|
32
|
+
// item_url = `${result.href}`;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
const item = {
|