@eeacms/volto-clms-theme 1.1.197 → 1.1.199
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,10 @@ 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.199](https://github.com/eea/volto-clms-theme/compare/1.1.198...1.1.199) - 14 November 2024
|
|
8
|
+
|
|
9
|
+
### [1.1.198](https://github.com/eea/volto-clms-theme/compare/1.1.197...1.1.198) - 13 November 2024
|
|
10
|
+
|
|
7
11
|
### [1.1.197](https://github.com/eea/volto-clms-theme/compare/1.1.196...1.1.197) - 11 November 2024
|
|
8
12
|
|
|
9
13
|
### [1.1.196](https://github.com/eea/volto-clms-theme/compare/1.1.195...1.1.196) - 6 November 2024
|
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@ export const TimeseriesPicker = (props) => {
|
|
|
34
34
|
const diffDays = Math.round(Math.abs((start - end) / oneDay));
|
|
35
35
|
return diffDays < limit;
|
|
36
36
|
};
|
|
37
|
-
const dates_array = data_arrays
|
|
37
|
+
const dates_array = data_arrays?.map((e) => new Date(e));
|
|
38
38
|
return (
|
|
39
39
|
<>
|
|
40
40
|
<Popup
|