Ver código fonte

on default view get only default password version

pull/342/head
Guillaume Vincent 7 anos atrás
pai
commit
a22c7bfac5
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/store/getters.js

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

@@ -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;


Carregando…
Cancelar
Salvar