Fixed broken tag search when anonymous
This commit is contained in:
parent
2d2813e843
commit
be32a671fc
1 changed files with 3 additions and 1 deletions
|
|
@ -22,7 +22,9 @@ export default {
|
|||
},
|
||||
getters: {
|
||||
header: state => {
|
||||
return 'JWT ' + state.token
|
||||
if (state.token) {
|
||||
return 'JWT ' + state.token
|
||||
}
|
||||
}
|
||||
},
|
||||
mutations: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue