Skip to content

Commit

Permalink
children -> _children
Browse files Browse the repository at this point in the history
  • Loading branch information
lrosenstrom committed Jan 16, 2025
1 parent 3c63add commit ff9f414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whelk-core/src/main/groovy/whelk/search2/FacetTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public List<Map<String, Object>> sortObservationsAsTree(List<Map<String, Object>
var children = findChildren(observation, observations);
if (!children.isEmpty()) {
queue.addAll(children);
observation.put("children", children);
observation.put("_children", children);
}
}
return List.copyOf(tree);
Expand Down

0 comments on commit ff9f414

Please sign in to comment.