From 20fb25d055195b747374300c570b857705d7eb7a Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Thu, 4 Apr 2024 17:19:17 +0300 Subject: [PATCH] [master | DONE | CHANGED]: searchFields.irish.ts: Override ORGANIZATION_REFINE_FIELDS and ORGANIZATION_ADVANCED_FIELDS, so that "countrynojurisdiction" field is not included (no search filters in organizations). --- src/app/shared/searchFields.irish.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/shared/searchFields.irish.ts b/src/app/shared/searchFields.irish.ts index f0d4560..b9d0a85 100644 --- a/src/app/shared/searchFields.irish.ts +++ b/src/app/shared/searchFields.irish.ts @@ -26,6 +26,9 @@ export class SearchFields extends SearchFieldsBase { ]} ]; + ORGANIZATION_REFINE_FIELDS: string[] = []; + ORGANIZATION_ADVANCED_FIELDS: string[] = ["q", "organizationlegalname", "organizationlegalshortname", "pid"]; + public static getParameterOrder(fieldId: string, params): number { let fields = []; let searchFields = new SearchFields();