Skip to content

Commit

Permalink
fix side panel open on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur committed Feb 2, 2025
1 parent 9646501 commit c3b60ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function DocumentRow({doc}: Args) {

const onClick = (e: React.MouseEvent<HTMLAnchorElement>) => {
e.preventDefault()
if (e.ctrlKey) {
if (e.ctrlKey || e.altKey) {
dispatch(
currentNodeChanged({id: doc.id, ctype: "document", panel: "secondary"})
)
Expand Down

0 comments on commit c3b60ac

Please sign in to comment.