@eeacms/volto-clms-theme 1.1.287 → 1.1.288

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,15 @@ 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.288](https://github.com/eea/volto-clms-theme/compare/1.1.287...1.1.288) - 19 May 2026
8
+
9
+ #### :house: Internal changes
10
+
11
+ - style: Automated code fix [eea-jenkins - [`5ebcd5d`](https://github.com/eea/volto-clms-theme/commit/5ebcd5daedd1c8aaecc547af75f8b96145161c4c)]
12
+
13
+ #### :hammer_and_wrench: Others
14
+
15
+ - Refs #295031 - Remove CDSE related code in CLMSDownloadsView/FileCard and DatasetDownloadInformationWidget. [GhitaB - [`db56c2d`](https://github.com/eea/volto-clms-theme/commit/db56c2dac67ba22000f45820fab1287aba12f0fb)]
7
16
  ### [1.1.287](https://github.com/eea/volto-clms-theme/compare/1.1.286...1.1.287) - 18 May 2026
8
17
 
9
18
  #### :house: Internal changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.287",
3
+ "version": "1.1.288",
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",
@@ -163,11 +163,7 @@ const FileCard = (props) => {
163
163
  <Grid.Column
164
164
  width={['In_progress', 'Queued'].includes(item?.Status) ? 8 : 10}
165
165
  >
166
- <Header as="h3">{`Job ID: ${
167
- item?.cdse_task_role === 'parent' && !item?.FMETaskId
168
- ? 'CDSE PROCESSING...'
169
- : item?.FMETaskId
170
- }`}</Header>
166
+ <Header as="h3">{`Job ID: ${item?.FMETaskId}`}</Header>
171
167
  <Header.Subheader as="h4">{`Task ID: ${item?.TaskID}`}</Header.Subheader>
172
168
  <Segment basic className="file-datetimes">
173
169
  {item?.RegistrationDateTime && (
@@ -196,10 +192,10 @@ const FileCard = (props) => {
196
192
  </>
197
193
  )}
198
194
  </Segment>
199
- {item?.Datasets.length > 0 && (
195
+ {item?.Datasets?.length > 0 && (
200
196
  <ul>
201
- {item?.Datasets.map((dataset) => (
202
- <li>
197
+ {item?.Datasets.map((dataset, index) => (
198
+ <li key={dataset?.DatasetTitle || dataset?.name || index}>
203
199
  <DatasetNaming dataset={dataset} />
204
200
  </li>
205
201
  ))}
@@ -213,22 +209,6 @@ const FileCard = (props) => {
213
209
  <br />
214
210
  </>
215
211
  )}
216
- {item?.cdse_errors?.length > 0 && (
217
- <details style={{ marginTop: '0.5em' }}>
218
- <summary
219
- style={{
220
- cursor: 'pointer',
221
- }}
222
- >
223
- Show details
224
- </summary>
225
- <ul>
226
- {item.cdse_errors.map((err, idx) => (
227
- <li key={idx}>{err}</li>
228
- ))}
229
- </ul>
230
- </details>
231
- )}
232
212
  </Segment>
233
213
  )}
234
214
  {item?.Status === 'Finished_ok' && 3 - daysDiff > -1 && (
@@ -44,7 +44,6 @@ const ItemSchema = () => ({
44
44
  title: 'Enter the data source',
45
45
  description: '',
46
46
  choices: [
47
- ['CDSE', 'CDSE'],
48
47
  ['CDSE_CSV', 'CDSE_CSV'],
49
48
  ['WEKEO', 'WEKEO'],
50
49
  ['EEA', 'EEA'],