Skip to content

Commit a603a57

Browse files
committed
Table column styles working
1 parent 8fd726c commit a603a57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,9 @@ function TableCellView(props: {
535535
radius: columnStyle.radius || columnsStyle.radius,
536536
borderWidth: columnStyle.borderWidth || columnsStyle.borderWidth,
537537
textSize: columnStyle.textSize || columnsStyle.textSize,
538-
textWeight: columnStyle.textWeight || columnsStyle.textWeight,
539-
fontFamily: columnStyle.fontFamily || columnsStyle.fontFamily,
540-
fontStyle: columnStyle.fontStyle || columnsStyle.fontStyle,
538+
textWeight: columnsStyle.textWeight || columnStyle.textWeight,
539+
fontFamily: columnsStyle.fontFamily || columnStyle.fontFamily,
540+
fontStyle: columnsStyle.fontStyle || columnStyle.fontStyle,
541541
rowHeight: rowHeight,
542542
}
543543
let { background } = style;

0 commit comments

Comments
 (0)