Skip to content

Commit 7b7f033

Browse files
committed
Fixed #9913
1 parent 37f67a4 commit 7b7f033

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
- Fixed a bug where sections’ Default Status settings weren’t being respected when adding a new site to an entry. ([#9896](https://github.com/craftcms/cms/issues/9896))
3333
- Fixed a bug where the `utils/repair/section-structure` command was removing provisional drafts from the structure. ([#9868](https://github.com/craftcms/cms/issues/9868))
3434
- Fixed a bug where the control panel header elements could become squished. ([#9902](https://github.com/craftcms/cms/issues/9902))
35+
- Fixed a bug where collapsed structure elements weren’t getting included in exports. ([#9913](https://github.com/craftcms/cms/issues/9913))
3536

3637
### Security
3738
- Generated front-end URLs now begin with the `@web` alias value if the current site doesn’t have a base URL.

src/web/assets/cp/dist/js/Craft.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/cp/dist/js/Craft.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/cp/src/js/BaseElementIndex.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2011,6 +2011,7 @@ Craft.BaseElementIndex = Garnish.Base.extend({
20112011
var params = this.getViewParams();
20122012
delete params.criteria.offset;
20132013
delete params.criteria.limit;
2014+
delete params.collapsedElementIds;
20142015

20152016
params.type = $typeField.find('select').val();
20162017
params.format = $formatField.find('select').val();

0 commit comments

Comments
 (0)