Merge pull request #21596 from Saboti215/patch-1

feat: Add ability to use HTML fields in grids
This commit is contained in:
Ankush Menat 2023-07-11 15:32:08 +05:30 committed by GitHub
commit d731db352a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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