Skip to content

Commit

Permalink
Display data sample set on the main page (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip-L authored Jan 27, 2025
1 parent 74a53e2 commit 39716d1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/table/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,17 @@ export const generateColumns = (repoConfig?: {
header: 'Data Owner Region',
},
{
id: 'Client Industry',
accessorKey: 'Client.Industry',
header: 'Data Owner Industry',
id: 'Data Sample Set',
accessorKey:
'Project["Please share a sample of the data (a link to a file, an image, a table, etc., are good ways to do this.)"]',
header: 'Data Sample Set',
cell: ({ row }) => {
const value =
row.original.Project[
'Please share a sample of the data (a link to a file, an image, a table, etc., are good ways to do this.)'
]
return value ?? ''
},
},
{
id: 'Datacap requested amount',
Expand Down

0 comments on commit 39716d1

Please sign in to comment.