Fix: complete load with native PDF viewer (#8699)

This commit is contained in:
shamoon 2025-01-13 09:53:39 -08:00 committed by GitHub
parent 5c1039d07d
commit 1d5e7e930e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 40 additions and 37 deletions

View file

@ -620,7 +620,10 @@ export class DocumentDetailComponent
.subscribe({
next: (result) => {
this.metadata = result
if (this.archiveContentRenderType !== ContentRenderType.PDF) {
if (
this.archiveContentRenderType !== ContentRenderType.PDF ||
this.useNativePdfViewer
) {
this.previewLoaded = true
}
},