[develop | DONE | CHANGED]: organization.service.ts & searchOrganizations.service.ts: Removed environment check for parsing organization pid.

This commit is contained in:
Konstantina Galouni 2024-05-20 15:18:54 +03:00
parent 019530c222
commit d3746b28d0
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ export class OrganizationService {
}
}
if(organization['pid'] && properties.environment != "production") {
if(organization['pid']) {
this.organizationInfo.identifiers = this.parsingFunctions.parseIdentifiers(organization['pid']);
}
}

View File

@ -175,7 +175,7 @@ export class SearchOrganizationsService {
result.country = resData.country.classname;
}
if(resData['pid'] && properties.environment != "production") {
if(resData['pid']) {
result.identifiers = this.parsingFunctions.parseIdentifiers(resData['pid']);
}