updated hovers

This commit is contained in:
Graham Steffaniak 2023-07-29 10:37:16 -05:00
parent 9fc47937c2
commit 5364b3fb13
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import moment from "moment";
const mutations = { const mutations = {
closeHovers: (state) => { closeHovers: (state) => {
console.log("closing hovers")
state.show = null; state.show = null;
state.showConfirm = null; state.showConfirm = null;
}, },
@ -10,6 +11,7 @@ const mutations = {
state.showShell = !state.showShell; state.showShell = !state.showShell;
}, },
showHover: (state, value) => { showHover: (state, value) => {
console.log("showing hovers")
if (typeof value !== "object") { if (typeof value !== "object") {
state.show = value; state.show = value;
return; return;