diff --git a/js/controller/BoardController.js b/js/controller/BoardController.js index 69254c9c8..e3d4f91ec 100644 --- a/js/controller/BoardController.js +++ b/js/controller/BoardController.js @@ -214,7 +214,10 @@ app.controller('BoardController', function ($rootScope, $scope, $stateParams, St $scope.status.addSharee = null; }; $scope.aclDelete = function (acl) { - BoardService.deleteAcl(acl); + BoardService.deleteAcl(acl).then(function(data) { + $scope.loadDefault(); + $scope.refreshData(); + }); }; $scope.aclUpdate = function (acl) { BoardService.updateAcl(acl); diff --git a/templates/part.board.sidebarView.php b/templates/part.board.sidebarView.php index 8d44d34dd..45c2d394c 100644 --- a/templates/part.board.sidebarView.php +++ b/templates/part.board.sidebarView.php @@ -44,7 +44,7 @@ {{ boardservice.getCurrent().owner.displayname }} -
  • +