mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Fix comment punctuation
This commit is contained in:
@@ -364,7 +364,7 @@ export class MetadataService {
|
|||||||
private getFirstAllowedFormatBitstreamLink(bitstreamRd: RemoteData<PaginatedList<Bitstream>>): Observable<string> {
|
private getFirstAllowedFormatBitstreamLink(bitstreamRd: RemoteData<PaginatedList<Bitstream>>): Observable<string> {
|
||||||
return observableOf(bitstreamRd.payload).pipe(
|
return observableOf(bitstreamRd.payload).pipe(
|
||||||
// Because there can be more than one page of bitstreams, this expand operator
|
// Because there can be more than one page of bitstreams, this expand operator
|
||||||
// will retrieve them in turn due to the take(1) at the bottom, it will only
|
// will retrieve them in turn. Due to the take(1) at the bottom, it will only
|
||||||
// retrieve pages until a match is found
|
// retrieve pages until a match is found
|
||||||
expand((paginatedList: PaginatedList<Bitstream>) => {
|
expand((paginatedList: PaginatedList<Bitstream>) => {
|
||||||
if (hasNoValue(paginatedList.next)) {
|
if (hasNoValue(paginatedList.next)) {
|
||||||
|
Reference in New Issue
Block a user