Skip to content

Commit

Permalink
ISPN-7236 management of remote sites is not working
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje authored and ryanemerson committed Nov 28, 2016
1 parent 20b2816 commit db28672
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/module/cache-container/SiteManagementModalCtrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class SiteManagementModalCtrl {
);
}

executeSiteOperation(operation: string, siteName: string, message: string): void {
executeSiteOperation(siteName: string, operation: string, message: string): void {
let modal: IModalServiceInstance = openConfirmationModal(this.$uibModal, message);

modal.result.then(() => {
Expand Down
6 changes: 3 additions & 3 deletions src/module/cache-container/caches/view/caches.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ <h2 class="card-pf-title">
</span>
</p>
<p ng-if="cache.hasRemoteBackup()" style="height:20px" ng-init="container = ctrl.container">
<span ng-repeat="site in container['sites-offline'][cache.name]"><span
<span ng-repeat="site in container['sites-offline']"><span
class="pficon pficon-error-circle-o"></span> {{site}} &nbsp;</span>
<span ng-repeat="site in container['sites-mixed'][cache.name]"><span
<span ng-repeat="site in container['sites-mixed']"><span
class="pficon pficon-warning-triangle-o"></span> {{site}} &nbsp;</span>
<span ng-repeat="site in container['sites-online'][cache.name]"><span class="pficon pficon-ok"></span> {{site}} &nbsp;</span>
<span ng-repeat="site in container['sites-online']"><span class="pficon pficon-ok"></span> {{site}} &nbsp;</span>
</p>
</div>
</div>
Expand Down

0 comments on commit db28672

Please sign in to comment.