Think this is a bug but not 100% sure...
Within a Resource we have an Image field declared thus:
Image::create('avatar')
->accept(['jpg'])
->saveToFolder('assets/avatars')
With the field declared in this way the file is stored in the correct folder and the CreateAction and UpdateAction default functions display the file correctly on Create and Update.
However the table is looking only for the filename (which is what's stored in the database) of the image, not prepended with the declared saveToFolder location as appears to be happening within the Create/Update functions.
If I add a processValueToDatabase function and return 'assets/avatars' . $filename then the table renders the image correctly but the Update and Create functions don't as assets/avatars is added twice.
Is this the intended behaviour?