Merge pull request #428 from nextcloud/fix-assign-user-list

Fix assign user list
This commit is contained in:
Julius Härtl
2018-03-02 17:52:54 +01:00
committed by GitHub
6 changed files with 7 additions and 5 deletions

View File

@@ -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 = {};
}