diff --git a/login/utils/helper.class.ts b/login/utils/helper.class.ts index 4c6301af..ea0a83d5 100644 --- a/login/utils/helper.class.ts +++ b/login/utils/helper.class.ts @@ -10,6 +10,7 @@ export class User { expirationDate: number; role: string[]; accessToken?: string; + orcid?: string; refreshToken?: string; constructor(info: any) { @@ -23,6 +24,9 @@ export class User { if(info.refreshToken) { this.refreshToken = info.refreshToken; } + if(info.orcid) { + this.orcid = info.orcid; + } this.fullname = (info.name) ? info.name : ""; if (this.fullname == "") { if (this.firstname != "") { diff --git a/orcid/my-orcid-links/myOrcidLinks.component.ts b/orcid/my-orcid-links/myOrcidLinks.component.ts index 29d66592..5ed92e52 100644 --- a/orcid/my-orcid-links/myOrcidLinks.component.ts +++ b/orcid/my-orcid-links/myOrcidLinks.component.ts @@ -32,7 +32,7 @@ declare var UIkit: any; My ORCID links - Discover {{openaireEntities.RESULTS | lowercase}} related to you diff --git a/searchPages/searchUtils/newSearchPage.component.html b/searchPages/searchUtils/newSearchPage.component.html index 10663822..df53c3b4 100644 --- a/searchPages/searchUtils/newSearchPage.component.html +++ b/searchPages/searchUtils/newSearchPage.component.html @@ -288,7 +288,7 @@
-
+
{{searchUtils.totalResults|number}} {{type}} @@ -316,8 +316,9 @@ [type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults"> - + + Data dump +
diff --git a/searchPages/searchUtils/searchDownload.component.ts b/searchPages/searchUtils/searchDownload.component.ts index af9d2cf2..39448aec 100644 --- a/searchPages/searchUtils/searchDownload.component.ts +++ b/searchPages/searchUtils/searchDownload.component.ts @@ -16,7 +16,7 @@ import {properties} from "../../../../environments/environment"; template: `