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-09 13:21:44 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-01-09 13:21:44 +0300
commit69e1029d91ab5b462c5852cb063e842b98eaec94 (patch)
treec3231cb7b934dc6c7f03c73a1ecc01184cb57aec /src/vue
parent2cf7ce123a9a95e9a406e483bf87a644a6177ac3 (diff)
parent595227da8d7963c85bb1e5c9fc2b75b9db552749 (diff)
Merge branch 'testing'
Diffstat (limited to 'src/vue')
-rw-r--r--src/vue/Components/List/Item/Password.vue7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vue/Components/List/Item/Password.vue b/src/vue/Components/List/Item/Password.vue
index cc37631..28d59ea 100644
--- a/src/vue/Components/List/Item/Password.vue
+++ b/src/vue/Components/List/Item/Password.vue
@@ -78,6 +78,13 @@
try {
await ToastService.success(['PasswordPastedSuccess', this.password.getLabel()]);
+
+ if(this.password.getStatus() === 2 && await SettingsService.getValue('paste.compromised.warning')) {
+ ToastService
+ .warning('PasteBadPasswordWarning', null, 3)
+ .catch(ErrorManager.catchEvt);
+ }
+
if(await SettingsService.getValue('paste.popup.close') && this.active) {
window.close();
}