diff --git a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts index e1d8a0ca0..7b9195f45 100644 --- a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts +++ b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts @@ -416,4 +416,8 @@ export class FilePreviewScreenComponent implements OnInit { ); this._changeDetectorRef.detectChanges(); } + + preventArrowDefault($event: KeyboardEvent) { + $event.preventDefault(); + } }