From a1e8dcd5a067f81a80de590dbf933c48d46590ca Mon Sep 17 00:00:00 2001 From: jbalasis Date: Thu, 2 Nov 2023 12:20:21 +0200 Subject: [PATCH] minor dashboard agregation history fix --- src/app/domain/typeScriptClasses.ts | 2 +- src/app/pages/repository/dashboard/dashboard.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/domain/typeScriptClasses.ts b/src/app/domain/typeScriptClasses.ts index d14d17eb6..43239e8c1 100755 --- a/src/app/domain/typeScriptClasses.ts +++ b/src/app/domain/typeScriptClasses.ts @@ -732,7 +732,7 @@ export class BrokerSummary { } export class CollectionMonitorSummary { - aggregationDetails: AggregationDetails[]; + aggregationInfo: AggregationDetails[]; lastIndexedVersion: AggregationDetails; } diff --git a/src/app/pages/repository/dashboard/dashboard.component.ts b/src/app/pages/repository/dashboard/dashboard.component.ts index f07b778a5..899f3cbfc 100755 --- a/src/app/pages/repository/dashboard/dashboard.component.ts +++ b/src/app/pages/repository/dashboard/dashboard.component.ts @@ -199,7 +199,7 @@ export class DashboardComponent implements OnInit, OnDestroy { getCollectionMonitorSummary(collectionMonitorSummary: CollectionMonitorSummary) { - this.latestAggregations = collectionMonitorSummary.aggregationDetails; + this.latestAggregations = collectionMonitorSummary.aggregationInfo; this.lastIndexedVersion = collectionMonitorSummary.lastIndexedVersion; if ( !this.latestAggregations || (this.latestAggregations.length === 0) ) {