Skip to content

Commit

Permalink
[DUOS-2864] Add hyperlink to DAC email if it exists (#2454)
Browse files Browse the repository at this point in the history
  • Loading branch information
fboulnois authored Feb 8, 2024
1 parent 262fe8d commit b767f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/data_search/DatasetSearchTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const DatasetSearchTable = (props) => {
value: dataset.url ? <Link href={dataset.url}>{dataset.dataLocation}</Link> : dataset.dataLocation,
},
{
value: dataset.dac?.dacName,
value: dataset.dac?.dacEmail ? <Link href={'mailto:' + dataset.dac.dacEmail}>{dataset.dac?.dacName}</Link> : dataset.dac?.dacName,
},
],
};
Expand Down

0 comments on commit b767f84

Please sign in to comment.