Open raikun85 opened 5 years ago
For anyone who comes across this: I found the same issue when integrating ActiveAdmin with Globalize + Carrierwave. It boiled down to the fact that assignment to the nested translations
attribute won't work because there's no mounted uploader on the Translation
class, and the file object will subsequently be cast to a string. I've changed this gem like this:
https://github.com/foxtacles/carrierwave_globalize/tree/fix-carrierwave-globalize
and it works fine for me now.
Hi there,
I've followed the instructions, and boiled down, the code in use is:
Uploader:
The problem happens when the resulting form (relevant snippet):
The form has multipart also set.
But all of the values posted to the fields being saved as string representations of the upload file object, like "#" - which is not useful.
Any hits for where this might not be working?