Skip to content

Commit

Permalink
fix: gridcoldef null value lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
MacQSL committed Dec 19, 2024
1 parent fdb4f04 commit 101010a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/csv/CSVErrorsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const CSVErrorsTable = (props: CSVErrorsTableProps) => {
minWidth: 150,
maxWidth: 250,
renderCell: (params) => {
return params.value.toUpperCase();
return params.value?.toUpperCase();

Check warning on line 37 in app/src/components/csv/CSVErrorsTable.tsx

View check run for this annotation

Codecov / codecov/patch

app/src/components/csv/CSVErrorsTable.tsx#L37

Added line #L37 was not covered by tests
}
},
{
Expand Down

0 comments on commit 101010a

Please sign in to comment.