Skip to content

Commit

Permalink
[DCJ-436] Add dataset name to dataset sub rows (#2612)
Browse files Browse the repository at this point in the history
  • Loading branch information
fboulnois authored Jun 27, 2024
1 parent 14ab51e commit c13c894
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/data_search/DatasetSearchTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const studyTableHeader = [

const datasetTableHeader = [
'DUOS ID',
'Dataset Name',
'Data Use',
'Data Types',
'Participants',
Expand Down Expand Up @@ -297,6 +298,10 @@ export const DatasetSearchTable = (props) => {
value: <Link key={`dataset.datasetId`} href={`/dataset/${dataset.datasetIdentifier}`}>{dataset.datasetIdentifier}</Link>,
increaseWidth: true,
},
{
value: dataset.datasetName,
truncate: true,
},
{
value: () => {
const dataUse = dataset.dataUse;
Expand Down

0 comments on commit c13c894

Please sign in to comment.