Skip to content

Commit 2ea7402

Browse files
committed
Fix React invariant error
1 parent 051d5f3 commit 2ea7402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

component/virtualized-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default class VirtualizedTable extends React.Component {
8484
{this.schema.fields.map((field, fieldIndex) => (
8585
<Column
8686
key={fieldIndex}
87-
label={field.name}
87+
label={`${field.name}`}
8888
// cellDataGetter={({ columnData, dataKey, rowData }) =>
8989
// rowData
9090
// }

0 commit comments

Comments
 (0)