Skip to content

Commit

Permalink
Add display name to header
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-parker committed Jul 8, 2024
1 parent 497654b commit 70f9e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/SequenceDetailsPage/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const DataTableComponent: React.FC<Props> = ({ dataTableData, dataUseTermsHistor
return (
<div>
{dataTableData.topmatter.sequenceDisplayName !== undefined && (
<div className='px-6 mb-4 italic'>{dataTableData.topmatter.sequenceDisplayName}</div>
<div className='px-6 mb-4 italic'>Display Name: {dataTableData.topmatter.sequenceDisplayName}</div>
)}
{dataTableData.topmatter.authors !== undefined && dataTableData.topmatter.authors.length > 0 && (
<div className='px-6 mb-4'>
Expand Down

0 comments on commit 70f9e76

Please sign in to comment.