@eeacms/volto-clms-theme 1.1.91 → 1.1.93
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,21 @@ 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.93](https://github.com/eea/volto-clms-theme/compare/1.1.92...1.1.93) - 12 December 2023
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: fix when there is no qs [Mikel Larreategi - [`457ca3b`](https://github.com/eea/volto-clms-theme/commit/457ca3b81c03efe8754a0f88159308f24a4767c8)]
|
|
12
|
+
|
|
13
|
+
### [1.1.92](https://github.com/eea/volto-clms-theme/compare/1.1.91...1.1.92) - 12 December 2023
|
|
14
|
+
|
|
15
|
+
#### :rocket: New Features
|
|
16
|
+
|
|
17
|
+
- feat: add FME Job ID in the downloads page CLMS-2907 [Mikel Larreategi - [`7af59ad`](https://github.com/eea/volto-clms-theme/commit/7af59add01d655b29093061d50ca5346664d7501)]
|
|
18
|
+
|
|
19
|
+
#### :hammer_and_wrench: Others
|
|
20
|
+
|
|
21
|
+
- styles [Mikel Larreategi - [`c10774a`](https://github.com/eea/volto-clms-theme/commit/c10774ad2454e399fd4a0dc8f7973865fcf831cf)]
|
|
7
22
|
### [1.1.91](https://github.com/eea/volto-clms-theme/compare/1.1.90...1.1.91) - 12 December 2023
|
|
8
23
|
|
|
9
24
|
#### :rocket: New Features
|
package/package.json
CHANGED
|
@@ -156,6 +156,7 @@ const FileCard = (props) => {
|
|
|
156
156
|
width={['In_progress', 'Queued'].includes(item?.Status) ? 8 : 10}
|
|
157
157
|
>
|
|
158
158
|
<Header as="h3">{`Task ID: ${item?.TaskID}`}</Header>
|
|
159
|
+
<Header.Subheader as="h4">{`Job ID: ${item?.FMETaskId}`}</Header.Subheader>
|
|
159
160
|
<Segment basic className="file-datetimes">
|
|
160
161
|
{item?.RegistrationDateTime && (
|
|
161
162
|
<>
|
|
@@ -8,8 +8,9 @@ const TextareaWithRequestData = (props) => {
|
|
|
8
8
|
const { search } = useLocation();
|
|
9
9
|
|
|
10
10
|
const hashMatch = decodeURIComponent(
|
|
11
|
-
search.includes('text')
|
|
12
|
-
search.match(/.*(\?text=.*)/)[1].replace(/\?text=/, '')
|
|
11
|
+
search.includes('text')
|
|
12
|
+
? search.match(/.*(\?text=.*)/)[1].replace(/\?text=/, '')
|
|
13
|
+
: '',
|
|
13
14
|
);
|
|
14
15
|
|
|
15
16
|
return <TextareaWidget {...props} value={hashMatch} />;
|
|
@@ -71,6 +71,12 @@ h3 {
|
|
|
71
71
|
font-weight: bold;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
h4 {
|
|
75
|
+
margin-bottom: 1rem;
|
|
76
|
+
font-size: 1.15rem;
|
|
77
|
+
font-weight: bold;
|
|
78
|
+
}
|
|
79
|
+
|
|
74
80
|
p {
|
|
75
81
|
min-height: 1.6875rem;
|
|
76
82
|
margin-bottom: 1rem;
|
|
@@ -490,9 +496,9 @@ body:not(.contenttype-lrf:not(.section-cart):not(.section-profile))
|
|
|
490
496
|
}
|
|
491
497
|
|
|
492
498
|
body.contenttype-document .right-content ul {
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
499
|
+
position: relative;
|
|
500
|
+
left: 0.5rem;
|
|
501
|
+
margin-bottom: 1rem;
|
|
496
502
|
}
|
|
497
503
|
.card-container {
|
|
498
504
|
display: flex;
|