Skip to content

Commit fcf436f

Browse files
committed
Merge branch 'master' into master-deprecated
2 parents 1c35bfe + 8a0f16c commit fcf436f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/aui-tree/HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
## @VERSION@
66

7+
* [AUI-3205](https://issues.liferay.com/browse/AUI-3205) Pages are not displayed in the Page Tree
78
* [AUI-3201](https://issues.liferay.com/browse/AUI-3201) Tree is built without children nodes when there is not expanded children node (aui-tree-view)
89
* [AUI-3200](https://issues.liferay.com/browse/AUI-3200) Fix tree is built without children nodes (aui-tree-view) regression of AUI-3196 Prevent tree to create empty ul container with no children, remove previous condition and add ul element only when is expanded (has children).
910
* [AUI-3196](https://issues.liferay.com/browse/AUI-3196) An empty unordered list item (ul) is generated after each child list item (li)

src/aui-tree/js/aui-tree-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ var TreeNode = A.Component.create({
573573
if (!instance.get('expanded')) {
574574
nodeContainer.hide();
575575
}
576-
if (this.childrenLength) {
576+
if (instance.hasChildNodes()) {
577577
boundingBox.append(nodeContainer);
578578
}
579579
}

0 commit comments

Comments
 (0)