Fixed always loading namespaces, even if the user wasnt logged in
This commit is contained in:
parent
fad767e73d
commit
875e4ea6e6
1 changed files with 3 additions and 1 deletions
|
@ -51,7 +51,9 @@
|
|||
}
|
||||
},
|
||||
created() {
|
||||
this.loadNamespaces()
|
||||
if (this.user.authenticated) {
|
||||
this.loadNamespaces()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
logout() {
|
||||
|
|
Loading…
Reference in a new issue