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