Procházet zdrojové kódy

Make password profile global state

pull/342/head
Guillaume Vincent před 7 roky
rodič
revize
1d1c0c78b0
2 změnil soubory, kde provedl 2 přidání a 5 odebrání
  1. +1
    -2
      src/store/index.js
  2. +1
    -3
      src/views/PasswordGenerator.vue

+ 1
- 2
src/store/index.js Zobrazit soubor

@@ -24,6 +24,5 @@ export default new Vuex.Store({
getters,
actions,
mutations,
plugins: [createPersistedState({ key: "lesspass" })],
strict: true
plugins: [createPersistedState({ key: "lesspass" })]
});

+ 1
- 3
src/views/PasswordGenerator.vue Zobrazit soubor

@@ -131,7 +131,7 @@
Options
},
computed: {
...mapState(['passwords']),
...mapState(['passwords', 'password']),
...mapGetters(['passwordURL', 'isDefaultProfile'])
},
beforeMount() {
@@ -146,7 +146,6 @@
},
data() {
return {
password: {...this.$store.state.password},
showOptions: false,
masterPassword: '',
fingerprint: '',
@@ -229,7 +228,6 @@
};
return LessPass.generatePassword(site, login, masterPassword, passwordProfile).then(passwordGenerated => {
this.passwordGenerated = passwordGenerated;
this.$store.dispatch('savePassword', {password: this.password});
this.$store.dispatch('passwordGenerated');
});
},


Načítá se…
Zrušit
Uložit