mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Merge pull request #2677 from DSpace/backport-2673-to-dspace-7_x
[Port dspace-7_x] Fix for loading thumbnail images for Items when MediaViewer enabled
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
|
||||
import { ChangeDetectorRef, Component, Input, OnDestroy, OnInit } from '@angular/core';
|
||||
import { BehaviorSubject, Observable } from 'rxjs';
|
||||
import { filter, take } from 'rxjs/operators';
|
||||
import { BitstreamDataService } from '../../core/data/bitstream-data.service';
|
||||
@@ -42,6 +42,7 @@ export class MediaViewerComponent implements OnDestroy, OnInit {
|
||||
|
||||
constructor(
|
||||
protected bitstreamDataService: BitstreamDataService,
|
||||
protected changeDetectorRef: ChangeDetectorRef
|
||||
) {
|
||||
}
|
||||
|
||||
@@ -85,6 +86,7 @@ export class MediaViewerComponent implements OnDestroy, OnInit {
|
||||
}));
|
||||
}
|
||||
this.isLoading = false;
|
||||
this.changeDetectorRef.detectChanges();
|
||||
}));
|
||||
}
|
||||
}));
|
||||
|
Reference in New Issue
Block a user