Skip to content

Commit

Permalink
Security Option II changes
Browse files Browse the repository at this point in the history
Signed-off-by: Paul McBride <paul_mcbride@ie.ibm.com>
  • Loading branch information
mcbride-p committed Mar 7, 2022
1 parent 7b79245 commit 4a99565
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/PatientSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,12 +526,12 @@ export default class PatientSearch {
.forEach((token) => {
if (token.indexOf("-") === 0) {
params.push({
name: "_sort:desc",
value: token.substring(1),
name: "_sort",
value: token,
});
} else {
params.push({
name: "_sort:asc",
name: "_sort",
value: token,
});
}
Expand Down

0 comments on commit 4a99565

Please sign in to comment.