File tree 2 files changed +5
-1
lines changed
client/src/layouts/default
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 5
5
| Version | Supported |
6
6
| ------- | ------------------ |
7
7
| 2.X.X | :white_check_mark : |
8
+ | 2.X.X | EOL 31.03.2025 |
8
9
| 1.X.X | EOL 28.09.2024 |
9
10
| 0.X.X | |
10
11
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ const { cookies } = useCookies();
16
16
import axios from ' axios'
17
17
// axios.defaults.headers.common['User-Agent'] = 'Kubero/3.x'
18
18
// axios.defaults.headers.common['Authorization'] = 'Bearer ' + localStorage.getItem('kubero.JWT_TOKEN')
19
- axios .defaults .headers .common [' Authorization' ] = ' Bearer ' + cookies .get (" kubero.JWT_TOKEN" )
19
+ const token = cookies .get (" kubero.JWT_TOKEN" )
20
+ if (token ) {
21
+ axios .defaults .headers .common [' Authorization' ] = ' Bearer ' + token
22
+ }
20
23
// axios.defaults.headers.common['vary'] = 'Accept-Encoding'
21
24
22
25
export default defineComponent ({
You can’t perform that action at this time.
0 commit comments