diff --git a/landingPages/dataProvider/dataProvider.component.html b/landingPages/dataProvider/dataProvider.component.html
index 7ccd25d6..d85bbf7d 100644
--- a/landingPages/dataProvider/dataProvider.component.html
+++ b/landingPages/dataProvider/dataProvider.component.html
@@ -41,11 +41,11 @@
- - Results with funding information:
+
- Results with funding information:
{{dataProviderInfo.aggregationStatus.fundedContent | number}}
- - Collected full-texts:
- {{dataProviderInfo.aggregationStatus.indexRecords | number}}
+
- Collected full-texts:
+ {{dataProviderInfo.aggregationStatus.fulltexts | number}}
- OAI-PMH:
diff --git a/landingPages/dataProvider/dataProvider.service.ts b/landingPages/dataProvider/dataProvider.service.ts
index 55426130..f0fcfc11 100644
--- a/landingPages/dataProvider/dataProvider.service.ts
+++ b/landingPages/dataProvider/dataProvider.service.ts
@@ -54,11 +54,12 @@ export class DataProviderService {
}
parseDataproviderAggregationStatus(data: any): any {
- var aggregationStatus: {"fundedContent": string, "indexRecords": string} = null;
+ var aggregationStatus: {"fundedContent": string, "indexRecords": string, "fulltexts": string} = null;
if(data != null && data[0] != null) {
- aggregationStatus = {"fundedContent": "-1", "indexRecords": "-1"};
+ aggregationStatus = {"fundedContent": "-1", "indexRecords": "-1", "fulltexts": "-1"};
aggregationStatus.fundedContent = data[0].fundedContent;
aggregationStatus.indexRecords = data[0].indexRecords;
+ aggregationStatus.fulltexts = data[0].fulltexts;
}
return aggregationStatus;
}
diff --git a/utils/entities/dataProviderInfo.ts b/utils/entities/dataProviderInfo.ts
index 4d2e4fac..26f0b225 100644
--- a/utils/entities/dataProviderInfo.ts
+++ b/utils/entities/dataProviderInfo.ts
@@ -10,7 +10,7 @@ export class DataProviderInfo {
originalId: string;
countries: string[];
- aggregationStatus: {"fundedContent": string, "indexRecords": string}; //collected from datasource api
+ aggregationStatus: {"fundedContent": string, "indexRecords": string, "fulltexts": string}; //collected from datasource api
tabs: {"name": string, "content": string}[];
tabs2: string[] =[];