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 f44395e2a..6dbf34810 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 @@ -115,7 +115,7 @@ export class FilePreviewScreenComponent implements OnInit, OnDestroy { public reviewerForm: FormGroup; public shouldDeselectAnnotationsOnPageChange = true; - public analysisProgressInSeconds: number = 0; + public analysisProgressInSeconds = 0; public analysisProgress: number; public analysisInterval: number; diff --git a/apps/red-ui/src/app/utils/full-page-loading-indicator/full-page-loading-indicator.component.ts b/apps/red-ui/src/app/utils/full-page-loading-indicator/full-page-loading-indicator.component.ts index e46549d62..8e796edbb 100644 --- a/apps/red-ui/src/app/utils/full-page-loading-indicator/full-page-loading-indicator.component.ts +++ b/apps/red-ui/src/app/utils/full-page-loading-indicator/full-page-loading-indicator.component.ts @@ -7,5 +7,5 @@ import { Component, Input } from '@angular/core'; }) export class FullPageLoadingIndicatorComponent { @Input() displayed = false; - @Input() showIndicator: boolean = true; + @Input() showIndicator = true; }