Skip to content

Commit

Permalink
Fix a bug with select patient for appointment and prefilled appointment
Browse files Browse the repository at this point in the history
  • Loading branch information
projkov committed Nov 27, 2023
1 parent 3aa19ca commit 748173c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ item:
expression: "Patient?_count=25"
choiceColumn:
- forDisplay: true
path: "name.given.first() + ' ' + name.family"
path: "name.first().given.first() + ' ' + name.first().family"
- text: Start time
required: true
type: dateTime
Expand Down
4 changes: 2 additions & 2 deletions resources/seeds/Questionnaire/new-appointment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ item:
boolean: false
answerExpression:
language: application/x-fhir-query
expression: "Patient"
expression: "Patient?_count=25"
choiceColumn:
- forDisplay: true
path: "name.given.first() + ' ' + name.family"
path: "name.first().given.first() + ' ' + name.first().family"
- text: Service
type: reference
referenceResource:
Expand Down

0 comments on commit 748173c

Please sign in to comment.