From bcf837cbb5129d8858792a247b06d8eb4707fc6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Schl=C3=B6=C3=9Fer?= <63470585+Saboti215@users.noreply.github.com> Date: Wed, 5 Jul 2023 10:17:05 +0200 Subject: [PATCH] feat: Add ability to use HTML fields in grids --- frappe/core/doctype/doctype/doctype.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index 6a1887f14a..c127335b16 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -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