Fix: Error message must disappear when retrying (for a moment if unsuccessful again)

This commit is contained in:
ogerly 2021-05-10 17:05:52 +02:00
parent 52ee6a1891
commit 44856c7f3a

View File

@ -102,6 +102,8 @@ export default {
},
methods: {
async onSubmit() {
// error info ausschalten
this.loginfail = false
const loader = this.$loading.show({
container: this.$refs.submitButton,
})
@ -118,10 +120,6 @@ export default {
this.loginfail = true
}
},
closeAlert() {
this.$loading.hide()
this.loginfail = false
},
},
}
</script>