Skip to content

Commit e553c8a

Browse files
committed
passed down config file to table header
1 parent 722e743 commit e553c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ListResultTable/QueryResultList/QueryResultList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function QueryResultList(props) {
2626
<Title title={config.title} />
2727
<ListView title=" " actions={<ActionBar />} {...props}>
2828
{values && (
29-
<Datagrid header={<TableHeader />}>
29+
<Datagrid header={<TableHeader config={config}/>}>
3030
{Object.keys(values).map((key) => {
3131
return (
3232
<GenericField

0 commit comments

Comments
 (0)