[Library | Trunk]: Change feedback position on projects too

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@58737 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2020-05-20 20:48:32 +00:00
parent cbc32aaa46
commit f146738716
2 changed files with 18 additions and 8 deletions

View File

@ -971,15 +971,21 @@
</my-tab> </my-tab>
</my-tabs> </my-tabs>
</div> </div>
<div class="uk-margin-small-top uk-flex uk-flex-bottom"> <div class="uk-margin-small-top uk-flex">
<img src="assets/common-assets/graph.svg" style="opacity: 0.4"> <!-- Last Index Info-->
<span class="uk-margin-small-left uk-text-small uk-text-baseline uk-text-muted">Powered by OpenAIRE Open Research Graph</span> <div class="uk-flex uk-flex-bottom uk-width-2-3">
<span class="uk-margin-small-left uk-text-small uk-text-baseline uk-text-muted"> <img src="assets/common-assets/graph.svg" style="opacity: 0.4">
Last update of records in OpenAIRE: {{indexUpdateDate | date: 'MMM dd, yyyy'}} <span class="uk-margin-small-left uk-text-small uk-text-baseline uk-text-muted">Powered by OpenAIRE Open Research Graph</span>
</span> <span class="uk-margin-small-left uk-text-small uk-text-baseline uk-text-muted">
Last update of records in OpenAIRE: {{indexUpdateDate | date: 'MMM dd, yyyy'}}
</span>
</div>
<!--Feedback-->
<div class="uk-width-1-3 uk-text-right uk-text-small">
<span class="uk-text-muted">Any information missing or wrong?</span>
<a (click)="showFeedback = true; scroll()" class="portal-link space">Report an Issue</a>
</div>
</div> </div>
</div> </div>
<helper *ngIf="pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0" <helper *ngIf="pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0"
[texts]="pageContents['bottom']"></helper> [texts]="pageContents['bottom']"></helper>

View File

@ -766,4 +766,8 @@ export class ProjectComponent {
public getResultPreview(result: SearchResult, type: string): ResultPreview { public getResultPreview(result: SearchResult, type: string): ResultPreview {
return ResultPreview.searchResultConvert(result, type); return ResultPreview.searchResultConvert(result, type);
} }
public scroll() {
HelperFunctions.scroll();
}
} }