this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

New keyboard shortcuts

+20 -2
+20 -2
src/components/keyboard-shortcuts-help.jsx
··· 118 118 keys: <kbd>c</kbd>, 119 119 }, 120 120 { 121 + action: 'Compose new post (new window)', 122 + className: 'insignificant', 123 + keys: ( 124 + <> 125 + <kbd>Shift</kbd> + <kbd>c</kbd> 126 + </> 127 + ), 128 + }, 129 + { 121 130 action: 'Send post', 122 131 keys: ( 123 132 <> ··· 135 144 keys: <kbd>r</kbd>, 136 145 }, 137 146 { 147 + action: 'Reply (new window)', 148 + className: 'insignificant', 149 + keys: ( 150 + <> 151 + <kbd>Shift</kbd> + <kbd>r</kbd> 152 + </> 153 + ), 154 + }, 155 + { 138 156 action: 'Like (favourite)', 139 157 keys: ( 140 158 <> ··· 162 180 </> 163 181 ), 164 182 }, 165 - ].map(({ action, keys }) => ( 183 + ].map(({ action, className, keys }) => ( 166 184 <tr key={action}> 167 - <th>{action}</th> 185 + <th class={className}>{action}</th> 168 186 <td>{keys}</td> 169 187 </tr> 170 188 ))}