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
The bug is reproducible against the latest release or master.
There are no similar issues or pull requests to fix it yet.
Describe the bug
As of 0.1.10, the templates use the new is_iterable function instead of is_list (#174). But now some list and details admin pages that have custom column_formatters or column_formatters_detail produce Internal Server Error.
It is because str object returned from the formatter is determined as Iterable and the formatted value is passed to _url_for_details(). It is a variation of #196.
Checklist
master
.Describe the bug
As of 0.1.10, the templates use the new
is_iterable
function instead ofis_list
(#174). But now some list and details admin pages that have customcolumn_formatters
orcolumn_formatters_detail
produce Internal Server Error.It is because
str
object returned from the formatter is determined asIterable
and the formatted value is passed to_url_for_details()
. It is a variation of #196.Steps to reproduce the bug
No response
Expected behavior
No response
Actual behavior
No response
Debugging material
Environment
Additional context
No response
The text was updated successfully, but these errors were encountered: