From 2ed107195644914b099ca8b40651f33699e3a7cd Mon Sep 17 00:00:00 2001 From: dannyrb Date: Mon, 11 May 2020 21:55:08 -0400 Subject: [PATCH] Show (empty) for patientName if none is available --- .../src/routes/StudyListContainer/StudyListContainer.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/viewer/src/routes/StudyListContainer/StudyListContainer.jsx b/platform/viewer/src/routes/StudyListContainer/StudyListContainer.jsx index b1e86e774..5742b1f7c 100644 --- a/platform/viewer/src/routes/StudyListContainer/StudyListContainer.jsx +++ b/platform/viewer/src/routes/StudyListContainer/StudyListContainer.jsx @@ -164,7 +164,9 @@ function StudyListContainer({ history, data: studies }) { row: [ { key: 'patientName', - content: patientName, + content: patientName + ? patientName + : ((Empty)), title: patientName, gridCol: 4, },