Skip to content

Commit

Permalink
fix: Shortcut for Journal (CTRL+J in help) is actually ALT+J
Browse files Browse the repository at this point in the history
Resolved logseq#1502
  • Loading branch information
tiensonqin committed Mar 19, 2021
1 parent 6aaa4dd commit 817bf9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/frontend/components/onboarding.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
[:tr [:td (t :help/toggle-right-sidebar)] [:td "t r"]]
[:tr [:td (t :help/toggle-settings)] [:td "t s"]]
[:tr [:td (t :help/toggle-insert-new-block)] [:td "t e"]]
[:tr [:td (t :help/jump-to-journals)] [:td (util/->platform-shortcut "Ctrl-j")]]]]
[:tr [:td (t :help/jump-to-journals)] [:td (if util/mac? "Cmd-j" "Alt-j")]]]]
[:table
[:thead
[:tr
Expand Down

0 comments on commit 817bf9a

Please sign in to comment.