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 => {

- +