Selaa lähdekoodia

on default view get only default password version

pull/342/head
Guillaume Vincent 7 vuotta sitten
vanhempi
commit
a22c7bfac5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/store/getters.js

+ 1
- 1
src/store/getters.js Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna