From 5625a3581a3dfdd053c88f48f5888df7d989983a Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Tue, 16 Jan 2024 18:22:53 +0530 Subject: [PATCH] fix: drag and delete issue (#3379) --- web/components/issues/issue-layouts/kanban/base-kanban-root.tsx | 1 + 1 file changed, 1 insertion(+) 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 4167619cc..7349f6803 100644 --- a/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx +++ b/web/components/issues/issue-layouts/kanban/base-kanban-root.tsx @@ -202,6 +202,7 @@ export const BaseKanBanRoot: React.FC = observer((props: IBas issueIds, viewId ).finally(() => { + handleIssues(issueMap[dragState.draggedIssueId!], EIssueActions.DELETE); setDeleteIssueModal(false); setDragState({}); });