diff --git a/src/renderer/components/TimelineSpace/Contents/Cards/Notification/Favourite.vue b/src/renderer/components/TimelineSpace/Contents/Cards/Notification/Favourite.vue index 30b679d7..9777c088 100644 --- a/src/renderer/components/TimelineSpace/Contents/Cards/Notification/Favourite.vue +++ b/src/renderer/components/TimelineSpace/Contents/Cards/Notification/Favourite.vue @@ -2,7 +2,7 @@
-
+
{{ unread.length > 0 ? unread.length : '' }}
@@ -157,6 +157,15 @@ export default { }, focusNotification (index) { this.focusedIndex = index + }, + handleKey (event) { + switch (event.srcKey) { + case 'next': + if (!this.focusedIndex) { + this.focusedIndex = 0 + } + break + } } } }