Skip to content
Snippets Groups Projects
Verified Commit be32a671 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed broken tag search when anonymous

parent 2d2813e8
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,9 @@ export default {
},
getters: {
header: state => {
return 'JWT ' + state.token
if (state.token) {
return 'JWT ' + state.token
}
}
},
mutations: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment