Fixed namespaces nav sometimes using an old jwt token (#26)

This commit is contained in:
konrad 2019-03-07 19:48:55 +00:00 committed by Gitea
parent f7a17e45bc
commit 316148531c
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,6 @@
},
created() {
if (this.user.authenticated) {
this.namespaceService = new NamespaceService()
this.loadNamespaces()
}
},
@ -174,6 +173,7 @@
return 'https://www.gravatar.com/avatar/' + this.user.infos.avatar + '?s=50'
},
loadNamespaces() {
this.namespaceService = new NamespaceService()
this.namespaceService.getAll()
.then(r => {
this.$set(this, 'namespaces', r)