Skip to content

Commit 716d68f

Browse files
authored
fix side panel open on mac (#587)
1 parent 9646501 commit 716d68f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

changelog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- towncrier release notes start -->
44

5-
## [3.4] - Soon
5+
## [3.4] - 2025-02-02
66

77
### Changes
88

@@ -21,7 +21,9 @@
2121
- Column sorting and filtering in tags list view
2222
- Minor UX improvements: notification messages on custom field and document type CRUD
2323
operations
24-
24+
- For Macintosh users: when in dual panel mode with one panel command + document type,
25+
user can open docs in other panel by pressing Alt key while clicking on the document
26+
title (in commander)
2527

2628
## [3.3.1] - 2025-01-19
2729

ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander/DocumentRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default function DocumentRow({doc}: Args) {
3030

3131
const onClick = (e: React.MouseEvent<HTMLAnchorElement>) => {
3232
e.preventDefault()
33-
if (e.ctrlKey) {
33+
if (e.ctrlKey || e.altKey) {
3434
dispatch(
3535
currentNodeChanged({id: doc.id, ctype: "document", panel: "secondary"})
3636
)

0 commit comments

Comments
 (0)