Add V hotkey for the vote history modal

This commit is contained in:
lilserf 2021-01-04 10:50:15 -05:00 committed by GitHub
parent 5bccde5943
commit d88b02d199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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");
}