diff --git a/src/main/resources/public/app/components/userChipsInput.component.js b/src/main/resources/public/app/components/userChipsInput.component.js index 1cb0df3..6ca9ed2 100644 --- a/src/main/resources/public/app/components/userChipsInput.component.js +++ b/src/main/resources/public/app/components/userChipsInput.component.js @@ -11,7 +11,7 @@ function userChipsInputCtrl(UserService, $scope) { this.users = []; $scope.$watchCollection('$ctrl.selectedUsers', (users) => { - this.users = users; + if(users) this.users = users; }); $scope.$watchCollection('$ctrl.users', (users) => {