You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to set visible columns to a join column on a ForeignKey column the entire table UI will fail to display data as the admin UI doesn't know how to handle it.
Therefore the client attempts to look for Band.name, which results in it failing.
I believe this to be because it's simply not a supported feature (ForeignKey joins in table configs), but raising it none the less so I can document it
The text was updated successfully, but these errors were encountered:
Assuming Manager.name is unique, and the user is happy with the implied associated this can be kinda solved with Manager.get_readable using Manager.name as the representation. Still not ideal for if the user wants more visible columns however
When attempting to set visible columns to a join column on a ForeignKey column the entire table UI will fail to display data as the admin UI doesn't know how to handle it.
Code:
Resulting schema:
Therefore the client attempts to look for
Band.name
, which results in it failing.I believe this to be because it's simply not a supported feature (ForeignKey joins in table configs), but raising it none the less so I can document it
The text was updated successfully, but these errors were encountered: