Skip to content

Commit

Permalink
enabled sort and filter on progress column
Browse files Browse the repository at this point in the history
  • Loading branch information
atGit2021 committed Oct 15, 2024
1 parent 785560f commit 373ca47
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,11 @@ export const ProgressReportsColumnMap = {
valueGetter: (_, row) => row.status.value,
},
scheduleStatus: {
field: 'cumulativeSummary.scheduleStatus',
headerName: 'Progress',
...enumColumn(ScheduleStatusList, ScheduleStatusLabels),
sortable: false,
filterable: false,
sortable: true,
filterable: true,
valueGetter: (_, row) => row.varianceExplanation.scheduleStatus,
},
teamNews: {
Expand Down

0 comments on commit 373ca47

Please sign in to comment.