ESLint: fix indentation

This commit is contained in:
Yury Bondarenko
2023-06-27 16:14:46 +02:00
parent b505cbc690
commit 0690a201dc
410 changed files with 3488 additions and 3488 deletions

View File

@@ -21,13 +21,13 @@ export class Community extends DSpaceObject implements ChildHALResource, HandleO
@excludeFromEquals
@autoserialize
archivedItemsCount: number;
archivedItemsCount: number;
/**
* The {@link HALLink}s for this Community
*/
@deserialize
_links: {
_links: {
collections: HALLink;
logo: HALLink;
subcommunities: HALLink;
@@ -41,28 +41,28 @@ export class Community extends DSpaceObject implements ChildHALResource, HandleO
* Will be undefined unless the logo {@link HALLink} has been resolved.
*/
@link(BITSTREAM)
logo?: Observable<RemoteData<Bitstream>>;
logo?: Observable<RemoteData<Bitstream>>;
/**
* The list of Collections that are direct children of this Community
* Will be undefined unless the collections {@link HALLink} has been resolved.
*/
@link(COLLECTION, true)
collections?: Observable<RemoteData<PaginatedList<Collection>>>;
collections?: Observable<RemoteData<PaginatedList<Collection>>>;
/**
* The list of Communities that are direct children of this Community
* Will be undefined unless the subcommunities {@link HALLink} has been resolved.
*/
@link(COMMUNITY, true)
subcommunities?: Observable<RemoteData<PaginatedList<Community>>>;
subcommunities?: Observable<RemoteData<PaginatedList<Community>>>;
/**
* The Community that is a direct parent of this Community
* Will be undefined unless the parent community HALLink has been resolved.
*/
@link(COMMUNITY, false)
parentCommunity?: Observable<RemoteData<Community>>;
parentCommunity?: Observable<RemoteData<Community>>;
/**
* A string representing the unique handle of this Community