pallets-eco / flask-admin

Simple and extensible administrative interface framework for Flask
https://flask-admin.readthedocs.io
BSD 3-Clause "New" or "Revised" License
5.76k stars 1.57k forks source link

AttributeError: object has no attribute '_data' for composite keys #2376

Closed BrianRS closed 11 months ago

BrianRS commented 1 year ago

When accessing an object with a composite key, I'm getting the following error:

File "[...]flask_admin/contrib/peewee/view.py", line 190, in <listcomp> model._data[field_name] ^^^^^^^^^^^ AttributeError: 'Reactions' object has no attribute '_data'

The field name should be accessed through __data__[field_name] as opposed to _data[field_name]