From daf7c50a19ee3b64f25cbe581b81d5729cf989bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Popovics=20Andr=C3=A1s?= Date: Fri, 2 Nov 2018 10:53:15 +0100 Subject: [PATCH] Fixing typescript compilation error to work together with AMA (#3938) --- lib/core/viewer/components/txtViewer.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/viewer/components/txtViewer.component.ts b/lib/core/viewer/components/txtViewer.component.ts index 89a8d89b7f..36f84dbf0a 100644 --- a/lib/core/viewer/components/txtViewer.component.ts +++ b/lib/core/viewer/components/txtViewer.component.ts @@ -34,7 +34,7 @@ export class TxtViewerComponent implements OnChanges { @Input() blobFile: Blob; - content: string; + content: string | ArrayBuffer; constructor(private http: HttpClient) { }