I am trying to display extra columns in the patient search result list. This is what I did
"patientSearchResults": {
"address": {
"fields" : ["address1", "address2" , "address3"]
},
"personAttributes": {
"fields": ["birthdate" ]
}
}
This is what I see on the UI
There’s two issues here:
- the column name should be “Birth Date” instead of “Birthdate”
- the birthdate shows empty instead of his actual dob.
How do I fix the above ?