[Trunk | Library]: resultLanding.component.html & result-preview.component.html: [Bug fix] Remove check "&& properties.environment != 'production')" when "properties.adminToolsPortalType == 'community'".
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60939 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
cc38df3b7b
commit
a45915230c
|
@ -99,8 +99,7 @@
|
|||
</a>
|
||||
</li>
|
||||
<!-- ORCID -->
|
||||
<li *ngIf="properties.adminToolsPortalType == 'explore' || (properties.adminToolsPortalType ==
|
||||
'community' && properties.environment != 'production')">
|
||||
<li *ngIf="properties.adminToolsPortalType == 'explore' || properties.adminToolsPortalType == 'community'">
|
||||
<orcid-work [resultId]="id" [resultTitle]="resultLandingInfo.title" [resultLandingInfo]="resultLandingInfo"
|
||||
[pids]="pidsArrayString" [pageType]="'landing'">
|
||||
</orcid-work>
|
||||
|
|
|
@ -296,8 +296,7 @@
|
|||
</div>
|
||||
<!--&& loggedIn -->
|
||||
<div *ngIf="(result.pop_inf && result.DOI) ||
|
||||
((properties.adminToolsPortalType == 'explore' || (properties.adminToolsPortalType == 'community' &&
|
||||
properties.environment != 'production')) &&
|
||||
((properties.adminToolsPortalType == 'explore' || properties.adminToolsPortalType == 'community') &&
|
||||
((showOrcid && result.identifiers && result.identifiers.size > 0) || result.orcidCreationDates?.length > 0))"
|
||||
class="result-preview-bottom">
|
||||
<!-- Impact Factors-->
|
||||
|
@ -374,9 +373,8 @@
|
|||
</div>
|
||||
</ng-container>
|
||||
<!-- && loggedIn -->
|
||||
<span *ngIf="(properties.adminToolsPortalType == 'explore' || (properties.adminToolsPortalType == 'community' &&
|
||||
properties.environment != 'production')) && showOrcid && result.identifiers &&
|
||||
result.identifiers.size > 0"
|
||||
<span *ngIf="(properties.adminToolsPortalType == 'explore' || properties.adminToolsPortalType == 'community')
|
||||
&& showOrcid && result.identifiers && result.identifiers.size > 0"
|
||||
class="uk-width-1-3 uk-width-expand@s">
|
||||
<!-- class="uk-flex uk-flex-middle uk-flex-right uk-width-expand">-->
|
||||
<orcid-work *ngIf="showOrcid && result.identifiers && result.identifiers.size > 0"
|
||||
|
|
Loading…
Reference in New Issue