mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-09 01:26:24 +01:00
Fix k, shift+k not working
This commit is contained in:
parent
082745ee4f
commit
10b99d2af4
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ function Home({ hidden }) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
useHotkeys('k. shift+k', () => {
|
useHotkeys('k, shift+k', (_, handler) => {
|
||||||
// focus on previous status after active status
|
// focus on previous status after active status
|
||||||
// Traverses .timeline li .status-link, focus on .status-link
|
// Traverses .timeline li .status-link, focus on .status-link
|
||||||
const activeStatus = document.activeElement.closest(
|
const activeStatus = document.activeElement.closest(
|
||||||
|
|
Loading…
Reference in a new issue