Skip to content

Commit

Permalink
Merge pull request #3038 from responsible-ai-collaborative/staging
Browse files Browse the repository at this point in the history
Deploy to Production
  • Loading branch information
cesarvarela authored Aug 26, 2024
2 parents 8c10d80 + 0470e73 commit 2691977
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/gatsby-site/src/components/discover/CsvExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ const convertData = (hits) => {
'incident id': hit.incident_id,
'report number': hit.report_number,
title: hit.title,
'date published': format(fromUnixTime(hit.epoch_date_published), 'yyyy-MM-dd'),
'date submitted': format(fromUnixTime(hit.epoch_date_submitted), 'yyyy-MM-dd'),
'date modified': format(fromUnixTime(hit.epoch_date_modified), 'yyyy-MM-dd'),
'date downloaded': format(fromUnixTime(hit.epoch_date_downloaded), 'yyyy-MM-dd'),
'date published': format(fromUnixTime(hit.epoch_date_published ?? 0), 'yyyy-MM-dd'),
'date submitted': format(fromUnixTime(hit.epoch_date_submitted ?? 0), 'yyyy-MM-dd'),
'date modified': format(fromUnixTime(hit.epoch_date_modified ?? 0), 'yyyy-MM-dd'),
'date downloaded': format(fromUnixTime(hit.epoch_date_downloaded ?? 0), 'yyyy-MM-dd'),
url: hit.url,
'source domain': hit.source_domain,
language: hit.language,
Expand Down

0 comments on commit 2691977

Please sign in to comment.