Skip to content

Commit

Permalink
apply formatting to column labels in expanded view
Browse files Browse the repository at this point in the history
  • Loading branch information
rdonigian committed Sep 30, 2024
1 parent ad95541 commit 711d388
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const ProgressReportsColumns: Array<
}),
valueGetter: (_, row) => row.status.value,
width: 160,
renderCell: ({ value }) => {
renderCell: ({ formattedValue: value }) => {
return (
<Box
sx={{
Expand All @@ -129,7 +129,7 @@ export const ProgressReportsColumns: Array<
}),
valueGetter: (_, row) => row.varianceExplanation.scheduleStatus,
width: 160,
renderCell: ({ value }) => {
renderCell: ({ formattedValue: value }) => {
return (
<Box
sx={{
Expand Down

0 comments on commit 711d388

Please sign in to comment.