We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd726c commit a603a57Copy full SHA for a603a57
client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx
@@ -535,9 +535,9 @@ function TableCellView(props: {
535
radius: columnStyle.radius || columnsStyle.radius,
536
borderWidth: columnStyle.borderWidth || columnsStyle.borderWidth,
537
textSize: columnStyle.textSize || columnsStyle.textSize,
538
- textWeight: columnStyle.textWeight || columnsStyle.textWeight,
539
- fontFamily: columnStyle.fontFamily || columnsStyle.fontFamily,
540
- fontStyle: columnStyle.fontStyle || columnsStyle.fontStyle,
+ textWeight: columnsStyle.textWeight || columnStyle.textWeight,
+ fontFamily: columnsStyle.fontFamily || columnStyle.fontFamily,
+ fontStyle: columnsStyle.fontStyle || columnStyle.fontStyle,
541
rowHeight: rowHeight,
542
}
543
let { background } = style;
0 commit comments