We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60bcfe8 commit 42bb39dCopy full SHA for 42bb39d
1 file changed
src/app/item-page/mirador-viewer/mirador-viewer.service.ts
@@ -43,7 +43,7 @@ export class MiradorViewerService {
43
return bundleDataService.findAllByItem(item).pipe(
44
getFirstCompletedRemoteData(),
45
map((bundlesRD: RemoteData<PaginatedList<Bundle>>) => {
46
- return bundlesRD.payload
+ return bundlesRD.payload;
47
}),
48
map((paginatedList: PaginatedList<Bundle>) => paginatedList.page),
49
switchMap((bundles: Bundle[]) => bundles),
@@ -62,7 +62,7 @@ export class MiradorViewerService {
62
switchMap((bitstream: Bitstream) => bitstream.format.pipe(
63
64
map((formatRD: RemoteData<BitstreamFormat>) => {
65
- return formatRD.payload
+ return formatRD.payload;
66
67
map((format: BitstreamFormat) => {
68
if (format.mimetype.includes('image')) {
0 commit comments