Fixed broken tag search when anonymous
This commit is contained in:
parent
2d2813e843
commit
be32a671fc
|
@ -22,7 +22,9 @@ export default {
|
|||
},
|
||||
getters: {
|
||||
header: state => {
|
||||
return 'JWT ' + state.token
|
||||
if (state.token) {
|
||||
return 'JWT ' + state.token
|
||||
}
|
||||
}
|
||||
},
|
||||
mutations: {
|
||||
|
|
Loading…
Reference in New Issue