From cb6ff92283b2cc114405351f47c0622d82c619ef Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Tue, 17 Feb 2026 22:06:51 -0500 Subject: [PATCH] Add r hotkey to refresh deals --- src/App.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.vue b/src/App.vue index 99ef5ce..3e74e6b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -237,6 +237,11 @@ export default { event.preventDefault(); this.$refs.filterInput.focus(); } + + if (event.key === "r" && !isInput) { + event.preventDefault(); + this.fetchDeals(); + } }, parseFiltersFromUrl() {