Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vue
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2021-01-17 01:06:46 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-01-17 01:06:46 +0300
commit01fe6c15e6b970a45986af5b8177d9814c3d394d (patch)
treef8cda289911c9b647b677600cf60727120feda8e /src/vue
parent23befa10d46047e5718f35aaa018abccf6c114d9 (diff)
parentcdf0073e1324f3848bee05884aab9132e6286f13 (diff)
Merge branch 'stable'
# Conflicts: # package-lock.json # src/vue/Components/Tools/Generate.vue
Diffstat (limited to 'src/vue')
-rw-r--r--src/vue/Components/Tools/Generate.vue2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vue/Components/Tools/Generate.vue b/src/vue/Components/Tools/Generate.vue
index 176691d..ba1c55a 100644
--- a/src/vue/Components/Tools/Generate.vue
+++ b/src/vue/Components/Tools/Generate.vue
@@ -97,7 +97,6 @@
methods: {
async loadSetting(type) {
this[type] = await SettingsService.getValue(`password.generator.${type}`);
- console.log(this[type]);
},
copy() {
let data = this.password,
@@ -114,7 +113,6 @@
async generatePassword() {
if(this.generating) return;
this.generating = true;
- console.trace({numbers: this.numbers, special: this.special, strength: this.strength});
let response = /** @type {Message} **/ await MessageService
.send({type: 'password.generate', payload: {numbers: this.numbers, special: this.special, strength: this.strength}});
let data = response.getPayload();