@eeacms/volto-tableau 8.1.2 → 8.1.3
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 +6 -1
- package/package.json +1 -1
- package/src/middlewares/preview_image.js +1 -1
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
|
+
### [8.1.3](https://github.com/eea/volto-tableau/compare/8.1.2...8.1.3) - 22 November 2024
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix(upload): of files through contents modal where action.request.data is undefined [David Ichim - [`80bfb8e`](https://github.com/eea/volto-tableau/commit/80bfb8efbde41488cd99eacb82e8a1dc85e98d3f)]
|
|
12
|
+
|
|
7
13
|
### [8.1.2](https://github.com/eea/volto-tableau/compare/8.1.1...8.1.2) - 14 November 2024
|
|
8
14
|
|
|
9
15
|
#### :hammer_and_wrench: Others
|
|
@@ -11,7 +17,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
11
17
|
- add test [Miu Razvan - [`862b32c`](https://github.com/eea/volto-tableau/commit/862b32c6d2760cc2169eef9f900491e6afb9a00a)]
|
|
12
18
|
- add VisualizationView test [Miu Razvan - [`b4bea0a`](https://github.com/eea/volto-tableau/commit/b4bea0a6fc9814927b0b471ceebf4a9d4bfc50f2)]
|
|
13
19
|
- Disable tableau editor actions while loading the tableau [Miu Razvan - [`9f33c3c`](https://github.com/eea/volto-tableau/commit/9f33c3c2c3bcb0a3e36ba21e40cbb86f2dfc6150)]
|
|
14
|
-
- Extract parameters from tableau url, ref #279989 [Miu Razvan - [`f3c00d1`](https://github.com/eea/volto-tableau/commit/f3c00d124bd9417f44d9e9a6b054687de0859bbd)]
|
|
15
20
|
### [8.1.1](https://github.com/eea/volto-tableau/compare/8.1.0...8.1.1) - 11 October 2024
|
|
16
21
|
|
|
17
22
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -37,7 +37,7 @@ export const preview_image = (middlewares) => [
|
|
|
37
37
|
}
|
|
38
38
|
const state = store.getState();
|
|
39
39
|
const contentData = state.content.data;
|
|
40
|
-
const lastPreviewImage = Object.keys(action?.request?.data).includes(
|
|
40
|
+
const lastPreviewImage = Object.keys(action?.request?.data || {}).includes(
|
|
41
41
|
'preview_image',
|
|
42
42
|
)
|
|
43
43
|
? action?.request?.data.preview_image
|