[Library|Trunk]
Search download component: remove private from downloadURLAPI variable (for build:ssr) search page: remove depricated parameters for search download component git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@58358 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
519998e887
commit
84cf96efa7
|
@ -39,7 +39,7 @@ export class SearchDownloadComponent {
|
|||
@Input() csvParams: string;
|
||||
@Input() type: string;
|
||||
@ViewChild(AlertModal) alertApplyAll: AlertModal;
|
||||
private downloadURLAPI: string;
|
||||
downloadURLAPI: string;
|
||||
|
||||
sub: any;
|
||||
downloadFilePiwikSub: any;
|
||||
|
|
|
@ -71,7 +71,8 @@
|
|||
</span>
|
||||
<search-download *ngIf= "!showUnknownFilters && searchUtils.totalResults > 0 && ( entityType !=
|
||||
'community' && entityType != 'funder') && usedBy == 'search'"
|
||||
class="uk-width-1-2" [loadPaging]="loadPaging" [oldTotalResults]="oldTotalResults" [(searchUtils)] = "searchUtils" [type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults">
|
||||
class="uk-width-1-2" [isDisabled]="loadPaging" [type]="csvPath"
|
||||
[csvParams]="csvParams" [totalResults]="searchUtils.totalResults">
|
||||
</search-download>
|
||||
|
||||
<div *ngIf="countFilters()>0" class="uk-margin-small-bottom">
|
||||
|
@ -134,7 +135,8 @@
|
|||
</span>
|
||||
<search-download *ngIf= "!showUnknownFilters && searchUtils.totalResults > 0 && ( entityType !=
|
||||
'community' && entityType != 'funder') && usedBy == 'search'"
|
||||
class="uk-width-1-2" [loadPaging]="loadPaging" [oldTotalResults]="oldTotalResults" [(searchUtils)] = "searchUtils" [type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults">
|
||||
class="uk-width-1-2" [isDisabled]="loadPaging"
|
||||
[type]="csvPath" [csvParams]="csvParams" [totalResults]="searchUtils.totalResults">
|
||||
</search-download>
|
||||
|
||||
<div class="uk-width-1-1 uk-margin-small-bottom ">
|
||||
|
|
Loading…
Reference in New Issue