fix: mac text copy fix (#277)
This commit is contained in:
parent
7950f191e7
commit
9c8c7f1dda
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ export const CommandPalette: React.FC = () => {
|
|||
if ((e.ctrlKey || e.metaKey) && (e.key === "k" || e.key === "K")) {
|
||||
e.preventDefault();
|
||||
setIsPaletteOpen(true);
|
||||
} else if (e.ctrlKey && (e.key === "c" || e.key === "C")) {
|
||||
} else if ((e.ctrlKey || e.metaKey) && (e.key === "c" || e.key === "C")) {
|
||||
if (e.altKey) {
|
||||
e.preventDefault();
|
||||
if (!router.query.issueId) return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue