Merge pull request #428 from nextcloud/fix-assign-user-list
Fix assign user list
This commit is contained in:
@@ -79,7 +79,6 @@ app.controller('CardController', function ($scope, $rootScope, $routeParams, $lo
|
||||
header.find('.save-indicator.unsaved').hide();
|
||||
header.find('.save-indicator.saved').fadeIn(250).fadeOut(1000);
|
||||
StackService.updateCard($scope.status.edit);
|
||||
BoardService.$scope.$digest();
|
||||
});
|
||||
}
|
||||
}, 500, 0, false);
|
||||
|
||||
@@ -124,7 +124,9 @@ app.factory('ApiService', function ($http, $q) {
|
||||
this.data[entity.id] = entity;
|
||||
} else {
|
||||
Object.keys(entity).forEach(function (key) {
|
||||
element[key] = entity[key];
|
||||
if (entity[key] !== null) {
|
||||
element[key] = entity[key];
|
||||
}
|
||||
});
|
||||
element.status = {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user