1
0

Fixed trying to load tasks even when the user was not authenticated

This commit is contained in:
kolaente
2018-11-24 13:38:44 +01:00
parent d736dee96c
commit e700565d82
2 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,9 @@
}
},
created() {
this.loadPendingTasks()
if (auth.user.authenticated) {
this.loadPendingTasks()
}
},
methods: {
logout() {