Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes bug introduced by previous fix for hanging activemq completion :)
  • Loading branch information
jstrachan committed Aug 23, 2013
1 parent 6d8e0b5 commit 3f14cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/camel/js/endpointChooser.ts
Expand Up @@ -324,7 +324,7 @@ module Camel {

// NOTE we don't really know which camel context to pick, so lets just find the first one?
var answer = null;
angular.forEach(contextsById, (id, details) => {
angular.forEach(contextsById, (details, id) => {
var mbean = details.mbean;
if (!answer && mbean) answer = mbean;
});
Expand Down

0 comments on commit 3f14cd8

Please sign in to comment.