Skip to content

Commit

Permalink
Add first contact and kick off to proposal table (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidborland authored Jan 13, 2023
1 parent 9221e3a commit d15371f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/src/components/Tables/ProposalsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,16 @@ export const ProposalsTable = ({ title, proposals, components, ...props }) => {
title: headerWithTooltip('Actual Grant Submission Date', 'Actual Grant Submission Date'),
field: 'actualGrantSubmissionDate',
hidden: !settings.tables.visibleColumns.actualGrantSubmissionDate,
},
{
title: headerWithTooltip('Kick-off Meeting Date', 'Kick-off Meeting Date'),
field: 'kickOff',
hidden: !settings.tables.visibleColumns.kickOff,
},
{
title: headerWithTooltip('Initial Contact Date', 'Initial Contact Date'),
field: 'firstContact',
hidden: !settings.tables.visibleColumns.firstContact,
},
{
title: headerWithTooltip('Funding Source', 'Current funding source of the study/trial'),
Expand Down

0 comments on commit d15371f

Please sign in to comment.