Skip to content

Commit

Permalink
Full treeview paging fix, refs #12611
Browse files Browse the repository at this point in the history
Fix issue preventing leaf nodes from being expanded in pageable version
of full treeview.
  • Loading branch information
mcantelon committed Jan 7, 2019
1 parent 38b3f93 commit ad70aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/fullWidthTreeView.js
Expand Up @@ -51,7 +51,7 @@

return node.id === '#' ?
window.location.pathname.match("^[^;]*")[0] + pathToApi + queryString :
node.a_attr.href + url;
node.a_attr.href + pathToApi;
},
'data': function (node) {
return node.id === '#' ?
Expand Down

0 comments on commit ad70aa7

Please sign in to comment.