@plone/volto 18.0.0-alpha.12 → 18.0.0-alpha.13

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
@@ -17,6 +17,12 @@ myst:
17
17
 
18
18
  <!-- towncrier release notes start -->
19
19
 
20
+ ## 18.0.0-alpha.13 (2024-02-22)
21
+
22
+ ### Bugfix
23
+
24
+ - Fix sidebar form update. @robgietema [#5779](https://github.com/plone/volto/issues/5779)
25
+
20
26
  ## 18.0.0-alpha.12 (2024-02-21)
21
27
 
22
28
  ### Feature
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "18.0.0-alpha.12",
12
+ "version": "18.0.0-alpha.13",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git@github.com:plone/volto.git"
@@ -314,7 +314,7 @@
314
314
  "yarnhook": "0.5.1",
315
315
  "@plone/registry": "1.3.1",
316
316
  "@plone/scripts": "3.3.2",
317
- "@plone/volto-slate": "18.0.0-alpha.6"
317
+ "@plone/volto-slate": "18.0.0-alpha.7"
318
318
  },
319
319
  "devDependencies": {
320
320
  "@jest/globals": "^29.7.0",
@@ -280,7 +280,7 @@ class Form extends Component {
280
280
  }
281
281
  if (
282
282
  this.props.global &&
283
- !isEqual(this.props.globalData, this.state.formData)
283
+ !isEqual(this.props.globalData, prevProps.globalData)
284
284
  ) {
285
285
  this.setState({
286
286
  formData: this.props.globalData,