updated hovers
This commit is contained in:
parent
9fc47937c2
commit
5364b3fb13
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue