From d88b02d19908cee8499367afc421a7272391dd14 Mon Sep 17 00:00:00 2001 From: lilserf Date: Mon, 4 Jan 2021 10:50:15 -0500 Subject: [PATCH] Add V hotkey for the vote history modal --- src/App.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.vue b/src/App.vue index 0b6fac6..a053447 100644 --- a/src/App.vue +++ b/src/App.vue @@ -102,6 +102,9 @@ export default { if (this.session.isSpectator) return; this.$store.commit("toggleModal", "roles"); break; + case "v": + this.$store.commit("toggleModal", "voteHistory"); + break; case "escape": this.$store.commit("toggleModal"); }