Skip to content

Commit

Permalink
fixed gremlin introduced by the fix for #629
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Oct 11, 2013
1 parent f94819c commit 3481db4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -157,7 +157,7 @@ module Dashboard {
}

public getType() {
return 'local';
return 'container';
}
}

Expand Down
Expand Up @@ -66,7 +66,7 @@ module Dashboard {
};

$scope.usingLocal = () => {
return dashboardRepository.getType() === 'local';
return dashboardRepository.getType() === 'container';
};

if ($scope.usingFabric()) {
Expand Down
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/perspective/js/helpers.ts
Expand Up @@ -96,7 +96,7 @@ module Perspective {
if (inFabric && hasGit) {
return "fabric";
} else if (inFabric) {
return "local";
return "container";
}
return null;
}
Expand Down

0 comments on commit 3481db4

Please sign in to comment.