@plone/volto 17.22.2 → 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.
Binary file
package/CHANGELOG.md CHANGED
@@ -17,6 +17,12 @@ 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
+
20
26
  ## 17.22.2 (2025-09-29)
21
27
 
22
28
  ### Bugfix
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "17.22.2",
12
+ "version": "17.22.3",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git@github.com:plone/volto.git"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plone/volto-slate",
3
- "version": "17.22.2",
3
+ "version": "17.22.3",
4
4
  "description": "Slate.js integration with Volto",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -82,7 +82,7 @@ const FileWidget = (props) => {
82
82
  }, [value]);
83
83
 
84
84
  const imgsrc = value?.download
85
- ? `${flattenToAppURL(value?.download)}?id=${Date.now()}`
85
+ ? `${flattenToAppURL(value?.download)}`
86
86
  : null || value?.data
87
87
  ? `data:${value['content-type']};${value.encoding},${value.data}`
88
88
  : null;