[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:
Konstantina Galouni 2024-02-07 11:57:55 +02:00
parent 76a72c175d
commit ffedfc0618
1 changed files with 2 additions and 0 deletions

View File

@ -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);