From c303888315499bed3577f311be5920abb043b183 Mon Sep 17 00:00:00 2001 From: Dennis Kigen Date: Wed, 14 Aug 2024 02:28:37 +0300 Subject: [PATCH] (fix) O3-3715: Add phone number person attribute to patient banner config --- packages/esm-patient-banner-app/src/config-schema.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/esm-patient-banner-app/src/config-schema.ts b/packages/esm-patient-banner-app/src/config-schema.ts index e283736134..93c5d5e005 100644 --- a/packages/esm-patient-banner-app/src/config-schema.ts +++ b/packages/esm-patient-banner-app/src/config-schema.ts @@ -4,7 +4,10 @@ export const configSchema = { contactAttributeTypes: { _type: Type.Array, _description: 'The UUIDs of person attribute types that store contact information', - _default: [], + _default: [ + // Telephone number + '14d4f066-15f5-102d-96e4-000c29c2a5d7', + ], _elements: { _type: Type.UUID, },