Fixed broken tag search when anonymous

This commit is contained in:
Eliot Berriot 2020-02-25 17:26:39 +01:00
parent 2d2813e843
commit be32a671fc
No known key found for this signature in database
GPG Key ID: 6B501DFD73514E14
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ export default {
},
getters: {
header: state => {
return 'JWT ' + state.token
if (state.token) {
return 'JWT ' + state.token
}
}
},
mutations: {