Skip to content

Dev - update #702

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 12 commits into from
Feb 22, 2024
Prev Previous commit
Next Next commit
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