Skip to content

Commit

Permalink
Fix #429
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Jul 29, 2013
1 parent f571c09 commit d50f671
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/fabric/html/container.html
Expand Up @@ -150,7 +150,7 @@ <h1>{{row.id}}</h1>
</div>
</dl>
<dl class="dl-horizontal">
<div fabric-profile-selector="selectedProfiles" version-id="row.versionId" included-profiles="row.profileIds"></div>
<div fabric-profile-selector="selectedProfiles" version-id="row.versionId" included-profiles="row.profileIds" show-links="true"></div>
</dl>
</div>
</div>
Expand Down
Expand Up @@ -24,7 +24,8 @@
<input type="checkbox" ng-model="profile.selected">
</td>
<td>
{{profile.id}}
<span>{{profile.id}}</span>
<a ng-show="showLinks" ng-href="#/fabric/profile/{{versionId}}/{{profile.id}}"><i class="icon-info-sign icon1point5x clickable pull-right" title="Details for {{profile.id}}"></i></a>
</td>
</tr>
</tbody>
Expand Down
Expand Up @@ -10,6 +10,7 @@ module Fabric {
selectedProfiles: '=fabricProfileSelector',
versionId: '=',
clearOnVersionChange: '@',
showLinks: '@',
excludedProfiles: '=',
includedProfiles: '='
};
Expand All @@ -18,7 +19,8 @@ module Fabric {
$scope.profiles = [];
$scope.responseJson = '';
$scope.filterText = '';
$scope.clearOnVersionChange = false
$scope.clearOnVersionChange = false;
$scope.showLinks = false;
$scope.selectedAll = false;
$scope.indeterminate = false;

Expand Down

0 comments on commit d50f671

Please sign in to comment.