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
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
}
},