From 2a64a0c951ef2f4dd50a089578367e75b8fc66b7 Mon Sep 17 00:00:00 2001 From: argirok Date: Tue, 19 Dec 2023 11:52:53 +0200 Subject: [PATCH] [angular-16-irish-monitor | DONE | CHANGED] Entity Actions: show Orcid for the case of irish --- utils/result-preview/result-preview.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/result-preview/result-preview.component.ts b/utils/result-preview/result-preview.component.ts index 5e78fc08..a6511fd9 100644 --- a/utils/result-preview/result-preview.component.ts +++ b/utils/result-preview/result-preview.component.ts @@ -126,7 +126,7 @@ export class ResultPreviewComponent implements OnInit, OnChanges { this.linking = true; this.share = true; this.cite = true; - this.orcid = (this.properties.adminToolsPortalType == 'explore' || this.properties.adminToolsPortalType == 'community' || this.properties.adminToolsPortalType == 'aggregator') && + this.orcid = (this.properties.adminToolsPortalType == 'explore' || this.properties.adminToolsPortalType == 'community' || this.properties.adminToolsPortalType == 'aggregator' || this.properties.adminToolsPortalType == 'irish') && this.showOrcid && this.result.identifiers && this.result.identifiers.size > 0; }