From aeb53b3401870da0738b9174223080930ef908bd Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 28 Jan 2026 15:41:30 +0530 Subject: [PATCH] fix: change condition for Workspace --- frappe/model/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/model/sync.py b/frappe/model/sync.py index 8054082249..12718d813a 100644 --- a/frappe/model/sync.py +++ b/frappe/model/sync.py @@ -203,7 +203,7 @@ def remove_orphan_entities(): entites = ["Workspace", "Dashboard", "Page", "Report"] app_level_entities = ["Workspace Sidebar", "Desktop Icon"] entity_filter_map = { - "Workspace": {"public": 1}, + "Workspace": [{"public": 1, "module": ["is", "set"], "app": ["is", "set"]}], "Page": {"standard": "Yes"}, "Report": {"is_standard": "Yes"}, "Dashboard": {"is_standard": True},