소스 검색

on default view get only default password version

pull/342/head
Guillaume Vincent 7 년 전
부모
커밋
a22c7bfac5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/store/getters.js

+ 1
- 1
src/store/getters.js 파일 보기

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


불러오는 중...
취소
저장