Skip to content

Commit 4b94a7f

Browse files
Fix for conditional color for table's column
1 parent 82c3de8 commit 4b94a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ function TableCellView(props: {
517517
columnTitle: title,
518518
});
519519
const cellColor = cellColorFn({
520-
currentCell: record[title.toLowerCase()],
520+
currentCell: record[title],
521521
});
522522

523523
const style = {

0 commit comments

Comments
 (0)