Skip to content

Commit

Permalink
chore: made code reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Jan 13, 2025
1 parent 45b2eab commit 8992f1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private Mono<ForestClientDetailsDto> populateContactTypes(
ForestClientDetailsDto forestClientDetailsDto
) {

if(CollectionUtils.isEmpty(forestClientDetailsDto.contacts()))
if (CollectionUtils.isEmpty(forestClientDetailsDto.contacts()))
return Mono.just(forestClientDetailsDto);

Set<String> contactCodes =
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/SearchPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const openClientDetails = (clientCode: string) => {
? `/clients/details/${clientCode}`
: `https://${greenDomain}/int/client/client02MaintenanceAction.do?bean.clientNumber=${clientCode}`;
if(featureFlags.STAFF_CLIENT_DETAIL)
if (featureFlags.STAFF_CLIENT_DETAIL)
window.open(url, "_self");
else
window.open(url, "_blank", "noopener");
Expand Down

0 comments on commit 8992f1c

Please sign in to comment.