File tree 2 files changed +5
-3
lines changed
ui2/src/features/nodes/components/Commander/DocumentsByTypeCommander
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- towncrier release notes start -->
4
4
5
- ## [ 3.4] - Soon
5
+ ## [ 3.4] - 2025-02-02
6
6
7
7
### Changes
8
8
21
21
- Column sorting and filtering in tags list view
22
22
- Minor UX improvements: notification messages on custom field and document type CRUD
23
23
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)
25
27
26
28
## [ 3.3.1] - 2025-01-19
27
29
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default function DocumentRow({doc}: Args) {
30
30
31
31
const onClick = ( e : React . MouseEvent < HTMLAnchorElement > ) => {
32
32
e . preventDefault ( )
33
- if ( e . ctrlKey ) {
33
+ if ( e . ctrlKey || e . altKey ) {
34
34
dispatch (
35
35
currentNodeChanged ( { id : doc . id , ctype : "document" , panel : "secondary" } )
36
36
)
You can’t perform that action at this time.
0 commit comments