Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing camel profile table due ng-grid updates, and that filter issue
  • Loading branch information
davsclaus committed May 4, 2013
1 parent 0f0869c commit df200ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -5,7 +5,7 @@
<form class="form-inline no-bottom-margin">
<fieldset>
<div class="control-group inline-block">
<input type="text" class="search-query" placeholder="Filter..." ng-model="search">
<input type="text" class="search-query" placeholder="Filter..." ng-model="gridOptions.filterOptions.filterText">
</div>
</fieldset>
</form>
Expand Down
3 changes: 1 addition & 2 deletions hawtio-web/src/main/webapp/app/camel/js/profile.ts
Expand Up @@ -3,7 +3,6 @@ module Camel {
export function ProfileRouteController($scope, $location, workspace:Workspace, jolokia) {

$scope.data = [];
$scope.search = "";
$scope.calcManually = true;
$scope.icons = {};
$scope.selectedRouteId = "";
Expand Down Expand Up @@ -92,7 +91,7 @@ module Camel {
enableSorting: false,
columnDefs: columnDefs,
filterOptions: {
filterText: 'search'
filterText: ''
}
};

Expand Down

0 comments on commit df200ae

Please sign in to comment.