Table.Column not render my relation StrapiV4

hello guys, good night I trying display a relation in <Table.Column> but im not getting the dataSource from tableProps is correct but not render value
No description
No description
10 Replies
wise-white
wise-white2y ago
Hello @gvt3ch can you try to pass key prop to the TableProps as well?
exotic-emerald
exotic-emerald2y ago
key="[doencas]["id"]" ? i passed and not work
exotic-emerald
exotic-emerald2y ago
No description
exotic-emerald
exotic-emerald2y ago
I using strapi v4 dataprovider with antd design
wise-white
wise-white2y ago
Please see the documentation here: https://refine.dev/docs/advanced-tutorials/data-provider/strapi-v4/ I guess you also need to pass metada.populate: ["doencas"]
Strapi-v4 | refine
refine supports the features that come with Strapi-v4.
exotic-emerald
exotic-emerald2y ago
i passed in useTable by antd design
wise-white
wise-white2y ago
Can you provide a minimal reproducable example on stackblitz or something similar? It's hard to tell without seeing the code 🙏
exotic-emerald
exotic-emerald2y ago
hey in one to one relation worked succesfull but one to many not
wise-white
wise-white2y ago
Hey @gvt3ch render={(_, record) => ( <Space> <EditButton hideText size="small" recordItemId={record.id} /> <DeleteButton hideText size="small" recordItemId={record.id} /> </Space> )} Can you try with custom render like this Hello @gvt3ch , did the previous message fix your issue?
exotic-emerald
exotic-emerald2y ago
hello yes, fixed thank u