[Trunk | Library]: refineResults.class.ts: Add check for not including filter value if it is "Undetermined" (for language).

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@57004 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
konstantina.galouni 2019-09-09 10:47:46 +00:00
parent f34e657f99
commit 245ae5cd9f
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export class RefineResultsUtils {
return filters;
}
private static includeValue (field):boolean {
if( field.name == "unidentified"){
if( field.name == "unidentified" || field.name == "Undetermined" ){
return false;
}