diff --git a/frappe/utils/global_search.py b/frappe/utils/global_search.py index 8d481a814b..7271118f4c 100644 --- a/frappe/utils/global_search.py +++ b/frappe/utils/global_search.py @@ -34,7 +34,7 @@ def get_doctypes_with_global_search(with_child_tables=True): global_search_doctypes = [] filters = {} if not with_child_tables: - filters = {"istable": ["!=", 1]} + filters = {"istable": ["!=", 1], "issingle": ["!=", 1]} for d in frappe.get_all('DocType', fields=['name', 'module'], filters=filters): meta = frappe.get_meta(d.name) if len(meta.get_global_search_fields()) > 0: