diff --git a/src/sections/evidence/Chembl/Body.js b/src/sections/evidence/Chembl/Body.js index 56ad1420c..b94f2c892 100644 --- a/src/sections/evidence/Chembl/Body.js +++ b/src/sections/evidence/Chembl/Body.js @@ -145,7 +145,7 @@ const columns = [ <>{clinicalStatus} ) ) : ( - 'N/A' + naLabel ); }, }, @@ -153,7 +153,8 @@ const columns = [ id: 'studyStartDate', label: 'Start Date', numeric: true, - renderCell: ({ studyStartDate }) => new Date(studyStartDate).getFullYear(), + renderCell: ({ studyStartDate }) => + studyStartDate ? new Date(studyStartDate).getFullYear() : naLabel, }, { label: 'Source',