From 5c209272e49b943426b230c03651b93f1909cad9 Mon Sep 17 00:00:00 2001 From: Saeed Kola Date: Wed, 9 Oct 2024 17:23:37 +0530 Subject: [PATCH] fix: Link field filters --- crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py index fd37fba6..739bde82 100644 --- a/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py +++ b/crm/fcrm/doctype/crm_fields_layout/crm_fields_layout.py @@ -45,6 +45,7 @@ def get_fields_layout(doctype: str, type: str): "options": field.options, "mandatory": field.reqd, "placeholder": field.get("placeholder"), + "filters": field.get("link_filters") } section["fields"][section.get("fields").index(field["name"])] = field