Skip to content

Commit 7067527

Browse files
committed
fixup! ui: fix table style to match osrd use and sample datas
1 parent 2bd9e6c commit 7067527

File tree

1 file changed

+1
-1
lines changed
  • front/ui/ui-core/src/components/Table

1 file changed

+1
-1
lines changed

front/ui/ui-core/src/components/Table/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Table = ({ columns, data, ambientVariant = 'B' }: TableProps) => {
3333
<tr>
3434
{columns.map((col) => (
3535
<td key={col.key} className={col.className}>
36-
{row[col.key]}
36+
{col.label}
3737
</td>
3838
))}
3939
</tr>

0 commit comments

Comments
 (0)