feat: Add ability to use HTML fields in grids

This commit is contained in:
Tobias Schlößer 2023-07-05 10:17:05 +02:00
parent 391638ad28
commit bcf837cbb5

View file

@ -1496,6 +1496,7 @@ def get_fields_not_allowed_in_list_view(meta) -> list[str]:
not_allowed_in_list_view.append("Attach Image")
if meta.istable:
not_allowed_in_list_view.remove("Button")
not_allowed_in_list_view.remove("HTML")
return not_allowed_in_list_view