diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index d90d3b2d9..8f480dea4 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -70,8 +70,9 @@ -
Documents in inbox: {{statistics?.documents_inbox}}
Total documents: {{statistics?.documents_total}}
diff --git a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts index a13839f19..3d9f7b5e7 100644 --- a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts +++ b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts @@ -15,6 +15,8 @@ export interface Statistics { styleUrls: ['./statistics-widget.component.scss'], }) export class StatisticsWidgetComponent implements OnInit, OnDestroy { + loading: boolean = true + constructor( private http: HttpClient, private consumerStatusService: ConsumerStatusService @@ -29,7 +31,9 @@ export class StatisticsWidgetComponent implements OnInit, OnDestroy { } reload() { + this.loading = true this.getStatistics().subscribe((statistics) => { + this.loading = false this.statistics = statistics }) } diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html index a9d3d306a..4eaee4761 100644 --- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html +++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -2,6 +2,10 @@