Skip to content

Commit

Permalink
220: Cannot select redirect item in list overview
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdemooij9 committed Aug 20, 2023
1 parent 10e4e50 commit 4213d2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@

vm.selectListViewNode = function (node) {
node.selected = node.selected === true ? false : true;
node.nodeType = this.section; // ListView nodes apparently don't come with nodeTypes.
nodeSelectHandler({
node: node
});
Expand Down Expand Up @@ -185,6 +186,7 @@
} else if (vm.linkTypeProperty.value === '3') {
changeSection("media");
}
vm.closeMiniListView();
}

function changeSection(section) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div class="umb-control-group">
<h5><localize key="defaultdialogs_linkToPage">Link to page</localize></h5>

<div ng-hide="miniListView">
<div ng-hide="vm.miniListView">
<label for="treeSearch" class="sr-only">
<localize key="visuallyHiddenTexts_searchContentTree">Search content tree</localize>
</label>
Expand Down

0 comments on commit 4213d2c

Please sign in to comment.