mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
stopping key listener when role modal is open
This commit is contained in:
parent
274ddbbdfd
commit
6ed2d1e109
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ export default {
|
|||
Gradients,
|
||||
},
|
||||
computed: {
|
||||
...mapState(["grimoire", "session"]),
|
||||
...mapState(["grimoire", "session", "modals"]),
|
||||
...mapState("players", ["players"]),
|
||||
},
|
||||
data() {
|
||||
|
@ -97,7 +97,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
keyup({ key, ctrlKey, metaKey }) {
|
||||
if (ctrlKey || metaKey || true) return;
|
||||
if (ctrlKey || metaKey || this.modals.role) return;
|
||||
switch (key.toLocaleLowerCase()) {
|
||||
case "g":
|
||||
this.$store.commit("toggleGrimoire");
|
||||
|
|
Loading…
Add table
Reference in a new issue