Fixed trying to load tasks even when the user was not authenticated
This commit is contained in:
parent
d736dee96c
commit
e700565d82
2 changed files with 4 additions and 1 deletions
|
@ -38,7 +38,9 @@
|
|||
}
|
||||
},
|
||||
created() {
|
||||
this.loadPendingTasks()
|
||||
if (auth.user.authenticated) {
|
||||
this.loadPendingTasks()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
logout() {
|
||||
|
|
1
todo.md
1
todo.md
|
@ -62,6 +62,7 @@
|
|||
* [ ] Links an den Freigewordenen Platz Menüpunkte machen à la "Heute"/Morgen/Diese Woche etc. Da kommt dann alles rein was dann due ist.
|
||||
* [ ] Andere Icons? --> Freepikkram
|
||||
* [ ] Fertige Tasks schöner visualisieren
|
||||
* [ ] Alles abgehakte ausblenden, mit btn zum wieder einblenden
|
||||
|
||||
* [ ] Search everything
|
||||
* [ ] Lists
|
||||
|
|
Loading…
Reference in a new issue