From 4b94a7f138a1ac4814307b56cedaaa287578a1b9 Mon Sep 17 00:00:00 2001 From: RAHEEL Date: Thu, 22 Feb 2024 15:25:44 +0500 Subject: [PATCH] Fix for conditional color for table's column --- .../lowcoder/src/comps/comps/tableComp/tableCompView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx b/client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx index 729e8f6b9..d19586c6b 100644 --- a/client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx +++ b/client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx @@ -517,7 +517,7 @@ function TableCellView(props: { columnTitle: title, }); const cellColor = cellColorFn({ - currentCell: record[title.toLowerCase()], + currentCell: record[title], }); const style = {