@plone/volto 17.22.1 → 17.22.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/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,18 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 17.22.3 (2025-10-01)
|
|
21
|
+
|
|
22
|
+
### Bugfix
|
|
23
|
+
|
|
24
|
+
- Fix image rerender on page edit. @calinvladth [#7390](https://github.com/plone/volto/issues/7390)
|
|
25
|
+
|
|
26
|
+
## 17.22.2 (2025-09-29)
|
|
27
|
+
|
|
28
|
+
### Bugfix
|
|
29
|
+
|
|
30
|
+
- Added guard in API REDUX middleware. @sneridagh [#7412](https://github.com/plone/volto/issues/7412)
|
|
31
|
+
|
|
20
32
|
## 17.22.1 (2025-08-25)
|
|
21
33
|
|
|
22
34
|
### Bugfix
|
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@ const FileWidget = (props) => {
|
|
|
82
82
|
}, [value]);
|
|
83
83
|
|
|
84
84
|
const imgsrc = value?.download
|
|
85
|
-
? `${flattenToAppURL(value?.download)}
|
|
85
|
+
? `${flattenToAppURL(value?.download)}`
|
|
86
86
|
: null || value?.data
|
|
87
87
|
? `data:${value['content-type']};${value.encoding},${value.data}`
|
|
88
88
|
: null;
|
package/src/middleware/api.js
CHANGED