Hi there
Whenever I select something (or add a new one) to a field of ModelListType I can see the previewed name inside the field.
When I update the entity and the item is linked to the property, the previewed name disappears. Can anyone tell me if this is a bug or did I do something wrong?
This happens on Media items (files names don't show up) and also one to one relationships to other entities,...
The weird thing is that this works perfectly on my local development server but not on a staging env...

The problem for me was caused by the fact that these fields do an internal request.
For some reason this request caused a ConflictingHeadersException. This error was silently ignored and this just caused the field to be empty.
What I did to fix this is add the following line to my app.php:
Request::setTrustedProxies([], Request::HEADER_X_FORWARDED_ALL);
I'm not sure if this is actually a good or secure solution though...
Since it is resolved I will close this issue.
Most helpful comment
Since it is resolved I will close this issue.