Show (empty) for patientName if none is available

This commit is contained in:
dannyrb 2020-05-11 21:55:08 -04:00 committed by James A. Petts
parent 36bc73579d
commit 2ed1071956

View File

@ -164,7 +164,9 @@ function StudyListContainer({ history, data: studies }) {
row: [ row: [
{ {
key: 'patientName', key: 'patientName',
content: patientName, content: patientName
? patientName
: (<span className="text-gray-700">(Empty)</span>),
title: patientName, title: patientName,
gridCol: 4, gridCol: 4,
}, },