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

github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-11-19 09:47:23 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-11-19 09:48:20 +0300
commit390d34f95db56c88ba4b308d3b13de7e8597e003 (patch)
tree3bebe917525f4ffb28a5bca6f4e46defd1c790c8 /src
parentaee3e50c32b5552cae4ed530ae56e3e8491127bc (diff)
Log errors when password is not confirmed
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/components/Device.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/Device.vue b/src/components/Device.vue
index 6344d17..ef30a61 100644
--- a/src/components/Device.vue
+++ b/src/components/Device.vue
@@ -62,6 +62,7 @@
action: () => {
confirmPassword()
.then(() => this.$store.dispatch('removeDevice', this.id))
+ .catch(console.error.bind(this))
}
}
]