👋 Hello, I'm trying to create a custom Cell View that should display a thumbnail from the document's upload field. I want this to show up in the list when browsing the Collection. I tried implementing a custom component but this is all the data that's passed to props:
{name: 'image', fieldType: 'upload', isFieldAffectingData: true, label: 'Image', relationTo: 'media'}
I tried following the guide https://payloadcms.com/docs/admin/components#cell-component but it seems like things have changed with Payload 3.
This is the field config:
{
name: "image",
type: "upload",
relationTo: "media",
admin: {
components: {
Cell: ProductImagePreview,
},
},
},
Am I missing something? 