Explorar el Código

on default view get only default password version

pull/342/head
Guillaume Vincent hace 7 años
padre
commit
a22c7bfac5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/store/getters.js

+ 1
- 1
src/store/getters.js Ver fichero

@@ -11,7 +11,7 @@ export const isGuest = state => !state.authenticated;
export const passwordStatus = state => state.passwordStatus;

export const version = state => {
if (state.password === null) {
if (state.password === null || state.route.path === '/options/default') {
return state.defaultPassword.version;
}
return state.password.version;


Cargando…
Cancelar
Guardar