[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:
argiro.kokogiannaki 2020-07-28 14:47:51 +00:00
parent bbc8ec2a34
commit 3fa328179c
2 changed files with 4 additions and 5 deletions

View File

@ -45,8 +45,7 @@
</ng-template> </ng-template>
</ul> </ul>
<ng-template [ngIf]="searchLink"> <ng-template [ngIf]="searchLink">
<hr> <ul class="searchLink">
<ul>
<li [class.current_section]="isTheActiveUrl(searchLink)" title="Search for Research Results" > <li [class.current_section]="isTheActiveUrl(searchLink)" title="Search for Research Results" >
<a [routerLink]="searchLink" [queryParams]="searchParams"> <a [routerLink]="searchLink" [queryParams]="searchParams">
<span class="menu_icon"><i class="material-icons">search</i></span> <span class="menu_icon"><i class="material-icons">search</i></span>

View File

@ -183,7 +183,7 @@ export class IndicatorPath {
chartObject: string; chartObject: string;
parameters: any; parameters: any;
filters: any; filters: any;
filteredApplied: boolean = false; filtersApplied: number = 0;
constructor(type: IndicatorPathType, source: SourceType, url: string, chartObject: string, jsonPath: string[]) { constructor(type: IndicatorPathType, source: SourceType, url: string, chartObject: string, jsonPath: string[]) {
this.type = type; this.type = type;
@ -193,7 +193,7 @@ export class IndicatorPath {
this.chartObject = chartObject; this.chartObject = chartObject;
this.parameters = {}; this.parameters = {};
this.filters = {}; this.filters = {};
this.filteredApplied = false; this.filtersApplied = 0;
} }
static createParameters(funderName: string = null, title: string = null, chartType: string = null): any { static createParameters(funderName: string = null, title: string = null, chartType: string = null): any {