From 5364b3fb13aa831afec2537e4a7773ad2f015a2c Mon Sep 17 00:00:00 2001 From: Graham Steffaniak Date: Sat, 29 Jul 2023 10:37:16 -0500 Subject: [PATCH] updated hovers --- frontend/src/store/mutations.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/store/mutations.js b/frontend/src/store/mutations.js index b60973b7..31ea1b51 100644 --- a/frontend/src/store/mutations.js +++ b/frontend/src/store/mutations.js @@ -3,6 +3,7 @@ import moment from "moment"; const mutations = { closeHovers: (state) => { + console.log("closing hovers") state.show = null; state.showConfirm = null; }, @@ -10,6 +11,7 @@ const mutations = { state.showShell = !state.showShell; }, showHover: (state, value) => { + console.log("showing hovers") if (typeof value !== "object") { state.show = value; return;