Skip to content

Conditional color for column not working #701

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix for conditional color for table's column
  • Loading branch information
raheeliftikhar5 committed Feb 22, 2024
commit 4b94a7f138a1ac4814307b56cedaaa287578a1b9
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ function TableCellView(props: {
columnTitle: title,
});
const cellColor = cellColorFn({
currentCell: record[title.toLowerCase()],
currentCell: record[title],
});

const style = {
Expand Down