Skip to content

Commit

Permalink
[Bug] Fix: Show in Treeview not working (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-bilharz authored Dec 10, 2024
1 parent 5c4c4d5 commit 03484c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/pimcore/treenodelocator.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ pimcore.treenodelocator = function()
var locateConfig = globalState.locateConfigs[globalState.currentTreeIndex];
var tree = locateConfig.tree;
var rootNode = tree.tree.getRootNode();
var rootNodeId = rootNode.getId();
var rootNodeId = rootNode.getId().toString();

// Tree root may be shifted to a subnode and the item to be shown
// is out of tree scope - don't continue if this is the case:
Expand Down

0 comments on commit 03484c0

Please sign in to comment.