[Library|Trunk]
Monitor related: -Sidebar: minor changes for search menu link -Stakeholer: change filteredApplied:boolean to filtersApplied:number git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@59182 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
bbc8ec2a34
commit
3fa328179c
|
@ -45,9 +45,8 @@
|
|||
</ng-template>
|
||||
</ul>
|
||||
<ng-template [ngIf]="searchLink">
|
||||
<hr>
|
||||
<ul>
|
||||
<li [class.current_section]="isTheActiveUrl(searchLink)" title="Search for Research Results">
|
||||
<ul class="searchLink">
|
||||
<li [class.current_section]="isTheActiveUrl(searchLink)" title="Search for Research Results" >
|
||||
<a [routerLink]="searchLink" [queryParams]="searchParams">
|
||||
<span class="menu_icon"><i class="material-icons">search</i></span>
|
||||
<span class="menu_title">Search for Research Results</span>
|
||||
|
|
|
@ -183,7 +183,7 @@ export class IndicatorPath {
|
|||
chartObject: string;
|
||||
parameters: any;
|
||||
filters: any;
|
||||
filteredApplied: boolean = false;
|
||||
filtersApplied: number = 0;
|
||||
|
||||
constructor(type: IndicatorPathType, source: SourceType, url: string, chartObject: string, jsonPath: string[]) {
|
||||
this.type = type;
|
||||
|
@ -193,7 +193,7 @@ export class IndicatorPath {
|
|||
this.chartObject = chartObject;
|
||||
this.parameters = {};
|
||||
this.filters = {};
|
||||
this.filteredApplied = false;
|
||||
this.filtersApplied = 0;
|
||||
}
|
||||
|
||||
static createParameters(funderName: string = null, title: string = null, chartType: string = null): any {
|
||||
|
|
Loading…
Reference in New Issue