diff --git a/src/store/actions.js b/src/store/actions.js index 18f8ac1..3e37bbe 100644 --- a/src/store/actions.js +++ b/src/store/actions.js @@ -147,6 +147,7 @@ const getRecorderVersion = async ({ commit }) => { * @param {string} user Name of the new selected user */ const setSelectedUser = async ({ commit, dispatch }, user) => { + commit(types.SET_SELECTED_DEVICE, null); commit(types.SET_SELECTED_USER, user); await dispatch("reloadData"); };