Skip to content

Commit

Permalink
feat: Add tree name on root.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinBetanc0urt committed Jul 19, 2024
1 parent 42447cd commit e49e065
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ public MenuTree withNode(MTree tree, MTreeNode node) {
documentDetail.put("internal_id", tree.getAD_Tree_ID());
documentDetail.put("id", tree.getUUID());
documentDetail.put("uuid", tree.getUUID());
documentDetail.put("name", tree.getName());

List<Map<String, Object>> children = new ArrayList<>();
while (childrens.hasMoreElements()) {
MTreeNode childNode = (MTreeNode)childrens.nextElement();
Expand Down

0 comments on commit e49e065

Please sign in to comment.