[Library | Trunk]: resultLanding.component.html: Add links to advanced search foreach FOS and SDG subject.
This commit is contained in:
parent
74c6b529d9
commit
8002bce6f5
|
@ -188,7 +188,11 @@
|
|||
</div>
|
||||
<div class="uk-margin-small-top">
|
||||
<div *ngIf="resultLandingInfo.fos && resultLandingInfo.fos.length > 0">
|
||||
{{resultLandingInfo.fos.join(', ')}}
|
||||
<ng-container *ngFor="let fos of resultLandingInfo.fos; let i=index">
|
||||
<a [routerLink]=" properties.searchLinkToAdvancedResults"
|
||||
[queryParams]="routerHelper.createQueryParams(['f0', 'fv0', 'size'], ['fos', fos, '50'])">{{fos}}</a>
|
||||
<span *ngIf="resultLandingInfo.fos.length-1 > i">, </span>
|
||||
</ng-container>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -198,7 +202,11 @@
|
|||
</div>
|
||||
<div class="uk-margin-small-top">
|
||||
<div *ngIf="resultLandingInfo.sdg && resultLandingInfo.sdg.length > 0">
|
||||
{{resultLandingInfo.sdg.join(', ')}}
|
||||
<ng-container *ngFor="let sdg of resultLandingInfo.sdg; let i=index">
|
||||
<a [routerLink]=" properties.searchLinkToAdvancedResults"
|
||||
[queryParams]="routerHelper.createQueryParams(['f0', 'fv0', 'size'], ['sdg', sdg, '50'])">{{sdg}}</a>
|
||||
<span *ngIf="resultLandingInfo.sdg.length-1 > i">, </span>
|
||||
</ng-container>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue