We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd9e6c commit 936b05cCopy full SHA for 936b05c
front/ui/ui-core/src/components/Table/Table.tsx
@@ -33,7 +33,7 @@ const Table = ({ columns, data, ambientVariant = 'B' }: TableProps) => {
33
<tr>
34
{columns.map((col) => (
35
<td key={col.key} className={col.className}>
36
- {row[col.key]}
+ {col.label}
37
</td>
38
))}
39
</tr>
0 commit comments