fix: create issue modal bugs (#257)
This commit is contained in:
parent
8e3541b947
commit
4ffa31fd02
7 changed files with 36 additions and 67 deletions
|
|
@ -245,7 +245,12 @@ const SingleModule: React.FC<UserAuth> = (props) => {
|
|||
title="Create a new issue"
|
||||
description="Click to create a new issue inside the module."
|
||||
Icon={PlusIcon}
|
||||
action={openCreateIssueModal}
|
||||
action={() => {
|
||||
const e = new KeyboardEvent("keydown", {
|
||||
key: "c",
|
||||
});
|
||||
document.dispatchEvent(e);
|
||||
}}
|
||||
/>
|
||||
<EmptySpaceItem
|
||||
title="Add an existing issue"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue