Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add route nodes as a stand alone category
  • Loading branch information
jstrachan committed Apr 9, 2013
1 parent fc0c212 commit d3da14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/wiki/js/camel.ts
Expand Up @@ -17,7 +17,7 @@ module Wiki {

angular.forEach(_apacheCamelModel.definitions, (value, key) => {
if (value.group) {
var group = $scope.paletteTree.getOrElse(value.group);
var group = (key === "route") ? $scope.paletteTree: $scope.paletteTree.getOrElse(value.group);
value["_id"] = key;
var title = value["title"] || key;
var node = new Folder(title);
Expand Down

0 comments on commit d3da14f

Please sign in to comment.