@eeacms/volto-clms-theme 1.1.250 → 1.1.251
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.251](https://github.com/eea/volto-clms-theme/compare/1.1.250...1.1.251) - 16 September 2025
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: file card not displaying fme task id when processed by FME [ana-oprea - [`1876f63`](https://github.com/eea/volto-clms-theme/commit/1876f635635705ccb0878a257023d2d9848647ff)]
|
|
12
|
+
|
|
7
13
|
### [1.1.250](https://github.com/eea/volto-clms-theme/compare/1.1.249...1.1.250) - 10 September 2025
|
|
8
14
|
|
|
9
15
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -165,7 +165,7 @@ const FileCard = (props) => {
|
|
|
165
165
|
>
|
|
166
166
|
<Header as="h3">{`Task ID: ${item?.TaskID}`}</Header>
|
|
167
167
|
<Header.Subheader as="h4">{`Job ID: ${
|
|
168
|
-
item?.cdse_task_role === 'parent'
|
|
168
|
+
item?.cdse_task_role === 'parent' && !item?.FMETaskId
|
|
169
169
|
? 'CDSE PROCESSING...'
|
|
170
170
|
: item?.FMETaskId
|
|
171
171
|
}`}</Header.Subheader>
|