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 7970990 commit 364ce4cCopy full SHA for 364ce4c
packages/ra-ui-materialui/src/list/SingleFieldList.tsx
@@ -93,7 +93,7 @@ export const SingleFieldList = <RecordType extends RaRecord = any>(
93
<WithListContext<RecordType>
94
render={({ isPending, data }) =>
95
!isPending && (
96
- <Stack direction="row" spacing={1}>
+ <>
97
{data?.map(record => {
98
const resourceLinkPath = !linkType
99
? false
@@ -135,7 +135,7 @@ export const SingleFieldList = <RecordType extends RaRecord = any>(
135
</RecordContextProvider>
136
);
137
})}
138
- </Stack>
+ </>
139
)
140
}
141
/>
0 commit comments