mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
adapted remote data build method to aggregate relation remotedata arrays
This commit is contained in:

committed by
Lotte Hofstede

parent
2b74c3034a
commit
fbb64a6031
@@ -58,13 +58,13 @@ export class Collection extends DSpaceObject {
|
||||
/**
|
||||
* An array of Collections that are direct parents of this Collection
|
||||
*/
|
||||
parents: Array<RemoteData<Collection>>;
|
||||
parents: RemoteData<Collection[]>;
|
||||
|
||||
/**
|
||||
* The Collection that owns this Collection
|
||||
*/
|
||||
owner: Collection;
|
||||
|
||||
items: Array<RemoteData<Item>>;
|
||||
items: RemoteData<Item[]>;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user