diff --git a/frontend/components/Layout/Layout.js b/frontend/components/Layout/Layout.js
index 14cd805d..f72064a7 100644
--- a/frontend/components/Layout/Layout.js
+++ b/frontend/components/Layout/Layout.js
@@ -69,7 +69,12 @@ type Props = {
}
@keydown('shift+/')
- goToOpenKeyboardShortcuts() {
+ openKeyboardShortcuts() {
+ this.props.ui.setActiveModal('keyboard-shortcuts');
+ }
+
+ @keydown('shift+3')
+ openMarkdownShortcuts() {
this.props.ui.setActiveModal('markdown-shortcuts');
}
diff --git a/frontend/components/Layout/components/Modals.js b/frontend/components/Layout/components/Modals.js
index 7ac3d91d..3d14bf02 100644
--- a/frontend/components/Layout/components/Modals.js
+++ b/frontend/components/Layout/components/Modals.js
@@ -52,7 +52,7 @@ import Settings from 'scenes/Settings';
-
+
diff --git a/frontend/components/Modal/Modal.js b/frontend/components/Modal/Modal.js
index df0ee9e5..92dc4db6 100644
--- a/frontend/components/Modal/Modal.js
+++ b/frontend/components/Modal/Modal.js
@@ -18,7 +18,7 @@ type Props = {
const Modal = ({
children,
isOpen,
- title = 'Untitled Modal',
+ title = 'Untitled',
onRequestClose,
...rest
}: Props) => {
diff --git a/frontend/scenes/KeyboardShortcuts/KeyboardShortcuts.js b/frontend/scenes/KeyboardShortcuts/KeyboardShortcuts.js
index f0c27c53..c4cd1df0 100644
--- a/frontend/scenes/KeyboardShortcuts/KeyboardShortcuts.js
+++ b/frontend/scenes/KeyboardShortcuts/KeyboardShortcuts.js
@@ -36,6 +36,9 @@ function KeyboardShortcuts() {
?
+
+ #
+
);