Progress Indicator for file reanalysis

This commit is contained in:
Timo 2021-02-24 18:21:53 +02:00
parent 5634bb5984
commit 7c2235092c
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -7,5 +7,5 @@ import { Component, Input } from '@angular/core';
})
export class FullPageLoadingIndicatorComponent {
@Input() displayed = false;
@Input() showIndicator: boolean = true;
@Input() showIndicator = true;
}