Skip to content

Commit

Permalink
fix(be:FSADT1-1449): Fixed order of business search by name (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Aug 15, 2024
1 parent fa42a09 commit 7af598d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ public Flux<ClientLookUpDto> findByClientNameOrIncorporation(String value) {
entry.status(),
entry.legalType()
)
);
)
.sort(Comparator.comparing(ClientLookUpDto::name));
}

/**
Expand Down

0 comments on commit 7af598d

Please sign in to comment.