From 7be8f43797c0669df4c4037c3a0652f057dcb2d3 Mon Sep 17 00:00:00 2001 From: Pavel Gnedov Date: Mon, 19 Jun 2023 20:53:17 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BF=D0=B5=D1=80=D0=B5=D1=85=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=BF=D0=BE=20=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D0=B0=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/issues-list-board/issues-list-card.tsx | 2 +- frontend/src/kanban-board/kanban-card.tsx | 2 +- frontend/src/misc-components/issue-details-dialog.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/issues-list-board/issues-list-card.tsx b/frontend/src/issues-list-board/issues-list-card.tsx index 72a995f..d66e243 100644 --- a/frontend/src/issues-list-board/issues-list-card.tsx +++ b/frontend/src/issues-list-board/issues-list-card.tsx @@ -17,7 +17,7 @@ export const IssuesListCard = observer((props: Props): JSX.Element => { visible: false }); return ( -
{e.stopPropagation(); e.preventDefault(); detailsStore.show();}}> +
{e.stopPropagation(); detailsStore.show();}}>
diff --git a/frontend/src/kanban-board/kanban-card.tsx b/frontend/src/kanban-board/kanban-card.tsx index f2764be..6babf0a 100644 --- a/frontend/src/kanban-board/kanban-card.tsx +++ b/frontend/src/kanban-board/kanban-card.tsx @@ -55,7 +55,7 @@ export const KanbanCard = observer((props: Props) => { visible: false, }) return ( -
{e.preventDefault(); e.stopPropagation(); detailsStore.show();}}> +
{e.stopPropagation(); detailsStore.show();}}>
diff --git a/frontend/src/misc-components/issue-details-dialog.tsx b/frontend/src/misc-components/issue-details-dialog.tsx index c33be89..dc8982f 100644 --- a/frontend/src/misc-components/issue-details-dialog.tsx +++ b/frontend/src/misc-components/issue-details-dialog.tsx @@ -41,7 +41,7 @@ export const IssueDetailsDialog = observer((props: Props): JSX.Element => {

- +