From ce6d0c3026788f91adbca8efdb18d9469948bb29 Mon Sep 17 00:00:00 2001 From: rahulramesha Date: Fri, 2 Feb 2024 12:54:34 +0530 Subject: [PATCH 1/2] fix all issues filter for spreadsheet view --- .../issue-layouts/roots/all-issue-layout-root.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/web/components/issues/issue-layouts/roots/all-issue-layout-root.tsx b/web/components/issues/issue-layouts/roots/all-issue-layout-root.tsx index 2ba02367415..c681736f524 100644 --- a/web/components/issues/issue-layouts/roots/all-issue-layout-root.tsx +++ b/web/components/issues/issue-layouts/roots/all-issue-layout-root.tsx @@ -148,9 +148,15 @@ export const AllIssueLayoutRoot: React.FC = observer(() => { const handleDisplayFiltersUpdate = useCallback( (updatedDisplayFilter: Partial) => { - if (!workspaceSlug) return; - - updateFilters(workspaceSlug.toString(), undefined, EIssueFilterType.DISPLAY_FILTERS, { ...updatedDisplayFilter }); + if (!workspaceSlug || !globalViewId) return; + + updateFilters( + workspaceSlug.toString(), + undefined, + EIssueFilterType.DISPLAY_FILTERS, + { ...updatedDisplayFilter }, + globalViewId.toString() + ); }, [updateFilters, workspaceSlug] ); From 6ea310b749e4e7f97aa1ce76199100a6e37b9dd9 Mon Sep 17 00:00:00 2001 From: rahulramesha Date: Fri, 2 Feb 2024 12:59:54 +0530 Subject: [PATCH 2/2] fix kanban dnd with long lists --- web/components/issues/issue-layouts/kanban/base-kanban-root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx b/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx index eb7005cbd91..486d676254b 100644 --- a/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx +++ b/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx @@ -237,7 +237,7 @@ export const BaseKanBanRoot: React.FC = observer((props: IBas )}
-
+
{/* drag and delete component */}