diff --git a/orcid/my-orcid-links/myOrcidLinks.component.ts b/orcid/my-orcid-links/myOrcidLinks.component.ts index 5ed92e52..ed8238d6 100644 --- a/orcid/my-orcid-links/myOrcidLinks.component.ts +++ b/orcid/my-orcid-links/myOrcidLinks.component.ts @@ -32,10 +32,14 @@ declare var UIkit: any; My ORCID links - Discover {{openaireEntities.RESULTS | lowercase}} related to you + + Discover {{openaireEntities.RESULTS | lowercase}} related to you + @@ -203,7 +207,7 @@ export class MyOrcidLinksComponent { this.subscriptions.push(this._orcidService.getPersonalDetails().subscribe( details => { let author: string = ""; - +console.log(details) if(details && details['name']) { let name: string = details['name']; if(name['given-names'] && name['given-names']['value']) { diff --git a/utils/properties/env-properties.ts b/utils/properties/env-properties.ts index 234bce1d..b6e3b370 100644 --- a/utils/properties/env-properties.ts +++ b/utils/properties/env-properties.ts @@ -151,6 +151,7 @@ export interface EnvProperties { logServiceUrl?:string; zenodoDumpUrl?:string; openOrgsUrl?:string; + orcidDiscoverLinksPage?:string; } export function checkPropertyValues(properties:EnvProperties){