[develop | DONE | FIXED]: [BUG FIX] fetchProjects.class.ts: In method "getResultsForOrganizations()" set "this.filters[i].countAllValues = this.filters[i].values.length;", because filters were loading forever.
This commit is contained in:
parent
76a72c175d
commit
ffedfc0618
|
@ -175,6 +175,7 @@ export class FetchProjects {
|
|||
}
|
||||
}
|
||||
}
|
||||
this.filters[i].countAllValues = this.filters[i].values.length;
|
||||
}
|
||||
}
|
||||
if (filterquery == "") {
|
||||
|
@ -186,6 +187,7 @@ export class FetchProjects {
|
|||
this.funders = (this.filters[i].values);
|
||||
|
||||
}
|
||||
this.filters[i].countAllValues = this.filters[i].values.length;
|
||||
}
|
||||
//console.log(" this.funders:"+ this.funders);
|
||||
|
||||
|
|
Loading…
Reference in New Issue