@plone/volto 16.32.0 → 16.32.1
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.draft
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
## 16.32.
|
|
1
|
+
## 16.32.1 (2024-08-28)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
Also, the properties form is now prepopulated with values if all selected items share the same value. @davisagli [#6248](https://github.com/plone/volto/issues/6248)
|
|
5
|
+
- Fix error in `SortOn` component when no sort is selected. @davisagli [#6273](https://github.com/plone/volto/issues/6273)
|
|
7
6
|
|
|
8
7
|
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 16.32.1 (2024-08-28)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix error in `SortOn` component when no sort is selected. @davisagli [#6273](https://github.com/plone/volto/issues/6273)
|
|
16
|
+
|
|
11
17
|
## 16.32.0 (2024-08-16)
|
|
12
18
|
|
|
13
19
|
### Feature
|
package/package.json
CHANGED
|
@@ -1526,7 +1526,7 @@ class Contents extends Component {
|
|
|
1526
1526
|
items={this.state.selected}
|
|
1527
1527
|
values={map(this.state.selected, (id) =>
|
|
1528
1528
|
find(this.state.items, { '@id': id }),
|
|
1529
|
-
)}
|
|
1529
|
+
).filter((item) => item)}
|
|
1530
1530
|
/>
|
|
1531
1531
|
{this.state.showWorkflow && (
|
|
1532
1532
|
<ContentsWorkflowModal
|