Skip to content

Commit

Permalink
:bugs: fix(ExpandOperationHandler): Fix the output of filterConcept
Browse files Browse the repository at this point in the history
  • Loading branch information
msfyuksel committed Oct 21, 2024
1 parent c305434 commit 8f98d83
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ class ExpandOperationHandler(fhirConfigurationManager:IFhirConfigurationManager)
(input \ "code").extractOpt[String].foreach(c => {output = output ~ ("code" -> c)})
(input \ "display").extractOpt[String].foreach(d => {output = output ~ ("display" -> d)})
(input \ "extension").extractOpt[JArray].foreach(arr => {output = output ~ ("extension" -> arr)})
(input \ "designation").extractOpt[JArray].foreach(arr => {output = output ~ ("designation" -> arr)})

// If there is a language filter, update the display attribute accordingly
if (language.nonEmpty) {
Expand Down

0 comments on commit 8f98d83

Please sign in to comment.