From c97b994311daca9b84e4dea6ccd70d93c9f110f8 Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Tue, 12 Mar 2024 19:11:36 +0530 Subject: [PATCH] [WEB-717] fix: delete issue modal UI fixes. (#3944) * fix: avoid closing the peek overview when the close button within the delete model popup is clicked. * fix: distortion in issue detail sidebar UI when any modal is open. --- web/components/issues/issue-detail/root.tsx | 2 +- web/components/issues/peek-overview/view.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/web/components/issues/issue-detail/root.tsx b/web/components/issues/issue-detail/root.tsx index 5e56170a8..25aa810cf 100644 --- a/web/components/issues/issue-detail/root.tsx +++ b/web/components/issues/issue-detail/root.tsx @@ -376,7 +376,7 @@ export const IssueDetailRoot: FC = observer((props) => { />
= observer((props) => { isOpen={isDeleteIssueModalOpen} handleClose={() => { toggleDeleteIssueModal(false); - removeRoutePeekId(); }} data={issue} onSubmit={() => issueOperations.remove(workspaceSlug, projectId, issueId)}