Skip to content

Commit 14376ee

Browse files
Issue fixed for Notification worklist patient name
1 parent 356d056 commit 14376ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JeMPI_Apps/JeMPI_Linker/src/main/java/org/jembi/jempi/linker/backend/LinkerDWH.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private static String patientName(final Interaction interaction) {
105105
.map(DemographicData.DemographicField::value)
106106
.findFirst()
107107
.orElse("");
108-
return givenName + " " + familyName;
108+
return (givenName + " " + familyName).trim();
109109
}
110110

111111
/**

devops/linux/docker/deployment/deploy-local.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,6 @@ case $choice in
249249
exit 0
250250
;;
251251
*)
252-
echo "Invalid choice. Please enter a number bitween 1-9."
252+
echo "Invalid choice. Please enter a number between 1-9."
253253
;;
254254
esac

0 commit comments

Comments
 (0)